summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/sem.h
blob: cc182649ce603a65e2b81059a2eb3d2eea7c5005 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SYS_SEM_H
#define _SYS_SEM_H

#include <linux/sem.h>
#include <sys/ipc.h>

extern int semget( key_t key, int nsems, int semflg) __THROW;
extern int semctl(int semid, int semnum, int cmd, union semun arg) __THROW;
extern int semop(int semid, struct sembuf *sops, unsigned nsops) __THROW;

#endif