2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 #ifndef _MACH_SEMAPHORE_H_
24 #define _MACH_SEMAPHORE_H_
26 #include <mach/port.h>
27 #include <mach/mach_types.h>
28 #include <mach/kern_return.h>
29 #include <mach/sync_policy.h>
32 * Forward Declarations
34 * The semaphore creation and deallocation routines are
35 * defined with the Mach task APIs in <mach/task.h>.
37 * kern_return_t semaphore_create(task_t task,
38 * semaphore_t *new_semaphore,
39 * sync_policy_t policy,
42 * kern_return_t semaphore_destroy(task_t task,
43 * semaphore_t semaphore);
46 #include <sys/cdefs.h>
49 extern kern_return_t
semaphore_signal (semaphore_t semaphore
);
50 extern kern_return_t
semaphore_signal_all (semaphore_t semaphore
);
51 extern kern_return_t
semaphore_signal_thread (semaphore_t semaphore
,
54 extern kern_return_t
semaphore_wait (semaphore_t semaphore
);
55 extern kern_return_t
semaphore_timedwait (semaphore_t semaphore
,
56 mach_timespec_t wait_time
);
58 extern kern_return_t
semaphore_wait_signal (semaphore_t wait_semaphore
,
59 semaphore_t signal_semaphore
);
61 extern kern_return_t
semaphore_timedwait_signal(semaphore_t wait_semaphore
,
62 semaphore_t signal_semaphore
,
63 mach_timespec_t wait_time
);
68 #define SEMAPHORE_OPTION_NONE 0x00000000
70 #define SEMAPHORE_SIGNAL 0x00000001
71 #define SEMAPHORE_WAIT 0x00000002
72 #define SEMAPHORE_WAIT_ON_SIGNAL 0x00000008
74 #define SEMAPHORE_SIGNAL_TIMEOUT 0x00000010
75 #define SEMAPHORE_SIGNAL_ALL 0x00000020
76 #define SEMAPHORE_SIGNAL_INTERRUPT 0x00000040 /* libmach implements */
77 #define SEMAPHORE_SIGNAL_PREPOST 0x00000080
79 #define SEMAPHORE_WAIT_TIMEOUT 0x00000100
80 #define SEMAPHORE_WAIT_INTERRUPT 0x00000400 /* libmach implements */
82 #define SEMAPHORE_TIMEOUT_NOBLOCK 0x00100000
83 #define SEMAPHORE_TIMEOUT_RELATIVE 0x00200000
85 #define SEMAPHORE_USE_SAVED_RESULT 0x01000000 /* internal use only */
86 #define SEMAPHORE_SIGNAL_RELEASE 0x02000000 /* internal use only */
90 #endif /* _MACH_SEMAPHORE_H_ */