1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

Add prototypes for shm_open and shm_unlink.

This commit is contained in:
Ulrich Drepper
2000-04-12 04:55:36 +00:00
parent 2a086df9dd
commit 967866f4d7

View File

@@ -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 */