2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
17 * Interface : POSIX, semaphores
18 * POSIX implementation of semaphores on Symbian
25 #ifndef __SEMAPHORE_H__
26 #define __SEMAPHORE_H__
28 #include <sys/types.h>
33 #endif /* __cplusplus */
35 /*Semaphores supported */
38 typedef struct _sem_t* sem_t;
41 This function initializes the semaphore object.
42 The semaphore count is set to the initial count value.
44 IMPORT_C extern int sem_init (sem_t * sem, int pshared, unsigned int value);
47 This function destroys the semaphore object.
49 IMPORT_C extern int sem_destroy (sem_t* sem);
52 This function atomically decrements sem's count if it is greater than 0 and returns immediately,
53 or it returns immediately with a return code of -1 after having set errno to EAGAIN.
54 sem_trywait never blocks.
56 IMPORT_C extern int sem_trywait (sem_t* sem);
59 This function atomically decrements sem's count if it is greater than 0 and returns immediately
60 or it suspends the calling thread until it can resume following a call to sem_post or sem_post_multiple
62 IMPORT_C extern int sem_wait (sem_t* sem);
65 This function atomically decrements sem's count if it is greater than 0 and returns immediately, or it
66 suspends the calling thread. If timeout time lapses before the thread can be resumed because of a sem_post,
67 case, then sem_timedwait returns with a return code of -1 after having set errno to ETIMEDOUT. If the
68 thread can return without suspending then abstime parameter is not checked.
70 IMPORT_C extern int sem_timedwait (sem_t* sem, const struct timespec* abstime);
73 The function increments (unlocks) the semaphore pointed to by sem .
74 If there are threads blocked on the semaphore when sem_post is called, the highest priority thread that has been blocked the longest on
75 the semaphore will be allowed to return from sem_wait .
76 If successful, the function returns zero; otherwise, it returns -1 and set errno to indicate the error.
78 IMPORT_C extern int sem_post (sem_t* sem);
81 This function establish a connection between a named semaphore and a process
83 /* IMPORT_C extern sem_t* sem_open (const char* name,int oflag,mode_t mode, unsigned int value); */
86 This function indicate that the calling process is finished using the named semaphore indicated by sem*/
87 /* IMPORT_C extern int sem_close (sem_t* sem); */
90 This function cleans up resources associated with a system-wide semaphore.
92 /* IMPORT_C extern int sem_unlink (const char* name); */
95 This function updates the location referenced by the sval argument with the value of the semaphore
96 referenced by sem without affecting the state of the semaphore.
97 The updated value represents an actual semaphore value that occurred at some unspecified time
98 during the call, but it need not be the actual value of the semaphore when it is returned to
99 the calling process. If sem is locked, then the object to which sval points shall either be set
100 to zero or to a negative number whose absolute value represents the number of processes waiting
101 for the semaphore at some unspecified time during the call.
103 IMPORT_C extern int sem_getvalue (sem_t* sem, int* sval);
107 } /* End of extern "C" */
108 #endif /* __cplusplus */
110 #endif /* __SEMAPHORE_H__ */