4535495d80
* The team and thread kernel structures have been renamed to Team and Thread respectively and moved into the new BKernel namespace. * Several (kernel add-on) sources have been converted from C to C++ since private kernel headers are included that are no longer C compatible. Changes after merging: * Fixed gcc 2 build (warnings mainly in the scary firewire bus manager). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40196 a95241bf-73f2-0310-859d-f6bbb57e9c96
39 lines
749 B
C++
39 lines
749 B
C++
/*
|
|
* Copyright 2008, Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef KERNEL_XSI_SEMAPHORE_H
|
|
#define KERNEL_XSI_SEMAPHORE_H
|
|
|
|
#include <sys/sem.h>
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <OS.h>
|
|
|
|
#include <kernel.h>
|
|
#include <posix/xsi_semaphore_defs.h>
|
|
|
|
|
|
namespace BKernel {
|
|
struct Team;
|
|
}
|
|
|
|
using BKernel::Team;
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
extern void xsi_sem_init();
|
|
extern void xsi_sem_undo(Team *team);
|
|
|
|
/* user calls */
|
|
int _user_xsi_semget(key_t key, int numberOfSemaphores, int flags);
|
|
int _user_xsi_semctl(int semaphoreID, int semaphoreNumber, int command,
|
|
union semun* args);
|
|
status_t _user_xsi_semop(int semaphoreID, struct sembuf *semOps,
|
|
size_t numSemOps);
|
|
|
|
__END_DECLS
|
|
|
|
#endif /* KERNEL_XSI_SEMAPHORE_H */
|