2003-05-03 20:03:26 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef KERNEL_SEM_H
|
|
|
|
#define KERNEL_SEM_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2002-07-19 00:51:27 +04:00
|
|
|
#include <OS.h>
|
2002-07-09 16:24:59 +04:00
|
|
|
#include <thread.h>
|
2003-05-03 20:03:26 +04:00
|
|
|
|
|
|
|
|
|
|
|
struct kernel_args;
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2002-10-05 05:17:28 +04:00
|
|
|
/* user calls */
|
2002-09-03 06:19:22 +04:00
|
|
|
sem_id user_create_sem(int32 count, const char *name);
|
|
|
|
status_t user_delete_sem(sem_id id);
|
2002-10-26 05:11:15 +04:00
|
|
|
status_t user_delete_sem_etc(sem_id id, status_t return_code, bool interrupted);
|
2002-09-03 06:19:22 +04:00
|
|
|
status_t user_acquire_sem(sem_id id);
|
|
|
|
status_t user_acquire_sem_etc(sem_id id, int32 count, uint32 flags, bigtime_t timeout);
|
|
|
|
status_t user_release_sem(sem_id id);
|
|
|
|
status_t user_release_sem_etc(sem_id id, int32 count, uint32 flags);
|
|
|
|
status_t user_get_sem_count(sem_id id, int32* thread_count);
|
|
|
|
status_t user_get_sem_info(sem_id, struct sem_info *, size_t);
|
|
|
|
status_t user_get_next_sem_info(team_id, int32 *, struct sem_info *, size_t);
|
|
|
|
status_t user_set_sem_owner(sem_id id, team_id team);
|
|
|
|
|
2002-10-05 05:17:28 +04:00
|
|
|
/* kernel calls */
|
|
|
|
extern sem_id create_sem_etc(int32 count, const char *name, team_id owner);
|
2003-05-03 20:03:26 +04:00
|
|
|
extern status_t sem_init(struct kernel_args *ka);
|
2002-10-05 05:17:28 +04:00
|
|
|
extern int sem_delete_owned_sems(team_id owner);
|
|
|
|
extern status_t sem_interrupt_thread(struct thread *t);
|
2002-09-03 06:19:22 +04:00
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
#endif /* KERNEL_SEM_H */
|