ncloader  0.1
 모두 데이타 구조 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 매크로 그룹들 페이지들
semaphore.c 파일 참조
#include <slibc.h>
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stddef.h>
#include <time.h>
#include <list.h>
#include <semaphore.h>
#include <stdlib.h>
#include <thread.h>
#include <bootm.h>
#include <interrupt.h>
#include <arch.h>
#include <semaphore0.h>
+ semaphore.c에 대한 include 의존 그래프

함수

int sem_init (sem_t *sem, int pshared, unsigned int value)
 세마포어 객체를 초기화 한다. 더 자세히 ...
 
int sem_destroy (sem_t *sem)
 세마포어 객체를 소멸 시킨다. 더 자세히 ...
 
int sem_post (sem_t *sem)
 세마포어 증가 연산을 수행한다. 더 자세히 ...
 
int sem_wait (sem_t *sem)
 세마포어 감소 연산을 수행한다. 더 자세히 ...
 
int sem_trywait (sem_t *sem)
 세마포어 감소 연산을 시도해 본다. 더 자세히 ...
 
int sem_timedwait (sem_t *sem, const struct timespec *abs_timeout)
 지정된 시간 안에 세마포어 감소 연산을 시도해 본다 더 자세히 ...
 
int sem_getvalue (sem_t *sem, int *val)
 지정된 세마포어 객체에서 조건 값을 가져온다. 더 자세히 ...