diff options
author | Elliott Hughes <enh@google.com> | 2017-08-16 16:30:54 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2017-08-16 16:30:54 -0700 |
commit | 079bff4fa52b0c3c76057451cc9cdecf1827fce0 (patch) | |
tree | 1f2667df4a1ed2dd79cb53a6231cb88d3d9ade13 /libc/include/sys/msg.h | |
parent | 67e7bf137e00a6c9ef79396e40be6b1705a2758c (diff) | |
download | android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.gz android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.bz2 android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.zip |
Name function arguments in libc headers for Studio.
Second batch of headers...
Bug: http://b/64613623
Test: builds
Change-Id: I8eef043dbf32afee8ff814e9d005f46aee8fa21f
Diffstat (limited to 'libc/include/sys/msg.h')
-rw-r--r-- | libc/include/sys/msg.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/include/sys/msg.h b/libc/include/sys/msg.h index ced5a3e01..0273499c7 100644 --- a/libc/include/sys/msg.h +++ b/libc/include/sys/msg.h @@ -41,11 +41,11 @@ __BEGIN_DECLS typedef __kernel_ulong_t msgqnum_t; typedef __kernel_ulong_t msglen_t; -int msgctl(int, int, struct msqid_ds*) __INTRODUCED_IN(26); -int msgget(key_t, int) __INTRODUCED_IN(26); -ssize_t msgrcv(int, void*, size_t, long, int) __INTRODUCED_IN(26); -int msgsnd(int, const void*, size_t, int) __INTRODUCED_IN(26); +int msgctl(int __msg_id, int __cmd, struct msqid_ds* __buf) __INTRODUCED_IN(26); +int msgget(key_t __key, int __flags) __INTRODUCED_IN(26); +ssize_t msgrcv(int __msg_id, void* __msgbuf_ptr, size_t __size, long __type, int __flags) __INTRODUCED_IN(26); +int msgsnd(int __msg_id, const void* __msgbuf_ptr, size_t __size, int __flags) __INTRODUCED_IN(26); __END_DECLS -#endif /* _SYS_MSG_H_ */ +#endif |