projects
/
platform
/
upstream
/
linaro-glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a086df
)
Add prototypes for shm_open and shm_unlink.
author
Ulrich Drepper
<drepper@redhat.com>
Wed, 12 Apr 2000 04:55:36 +0000
(
04:55
+0000)
committer
Ulrich Drepper
<drepper@redhat.com>
Wed, 12 Apr 2000 04:55:36 +0000
(
04:55
+0000)
misc/sys/mman.h
patch
|
blob
|
history
diff --git
a/misc/sys/mman.h
b/misc/sys/mman.h
index
5b53cd2
..
b86ba5e
100644
(file)
--- a/
misc/sys/mman.h
+++ b/
misc/sys/mman.h
@@
-123,6
+123,13
@@
extern void *mremap (void *__addr, size_t __old_len, size_t __new_len,
extern int mincore (void *__start, size_t __len, unsigned char *__vec);
#endif
+
+/* Open shared memory segment. */
+extern int shm_open (__const char *__name, int __oflag, mode_t __mode);
+
+/* Remove shared memory segment. */
+extern int shm_unlink (__const char *__name);
+
__END_DECLS
#endif /* sys/mman.h */