2001-03-22 00:06:22 +08:00
|
|
|
/* semaphore.h: POSIX semaphore interface
|
|
|
|
|
2003-01-10 20:32:49 +08:00
|
|
|
Copyright 2001, 2003 Red Hat, Inc.
|
2001-03-22 00:06:22 +08:00
|
|
|
|
|
|
|
Written by Robert Collins <rbtcollins@hotmail.com>
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifndef _SEMAPHORE_H
|
|
|
|
#define _SEMAPHORE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __INSIDE_CYGWIN__
|
2003-01-10 05:14:33 +08:00
|
|
|
typedef struct __sem_t {char __dummy;} *sem_t;
|
2001-03-22 00:06:22 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SEM_FAILED 0
|
|
|
|
#define SEM_VALUE_MAX 1147483648
|
|
|
|
|
|
|
|
/* Semaphores */
|
|
|
|
int sem_init (sem_t * sem, int pshared, unsigned int value);
|
|
|
|
int sem_destroy (sem_t * sem);
|
|
|
|
int sem_wait (sem_t * sem);
|
|
|
|
int sem_trywait (sem_t * sem);
|
|
|
|
int sem_post (sem_t * sem);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SEMAPHORE_H */
|