1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Namespace: semsys() and shmsys() aren't standard.

This commit is contained in:
David Schultz 2009-03-14 19:06:52 +00:00
parent 472f7812a2
commit 7e005f0136
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189814
2 changed files with 4 additions and 0 deletions

View File

@ -117,7 +117,9 @@ void semexit(struct proc *p);
#else /* ! _KERNEL */
__BEGIN_DECLS
#if __BSD_VISIBLE
int semsys(int, ...);
#endif
int semctl(int, int, int, ...);
int semget(key_t, int, int);
int semop(int, struct sembuf *, size_t);

View File

@ -138,7 +138,9 @@ typedef __size_t size_t;
#endif
__BEGIN_DECLS
#ifdef __BSD_VISIBLE
int shmsys(int, ...);
#endif
void *shmat(int, const void *, int);
int shmget(key_t, size_t, int);
int shmctl(int, int, struct shmid_ds *);