Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: fusl/arch/generic/bits/ipc.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 struct ipc_perm 1 struct ipc_perm {
2 { 2 key_t __ipc_perm_key;
3 » key_t __ipc_perm_key; 3 uid_t uid;
4 » uid_t uid; 4 gid_t gid;
5 » gid_t gid; 5 uid_t cuid;
6 » uid_t cuid; 6 gid_t cgid;
7 » gid_t cgid; 7 mode_t mode;
8 » mode_t mode; 8 int __ipc_perm_seq;
9 » int __ipc_perm_seq; 9 long __pad1;
10 » long __pad1; 10 long __pad2;
11 » long __pad2;
12 }; 11 };
13 12
14 #define IPC_64 0x100 13 #define IPC_64 0x100
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698