/* Copyright (c) 2003, Intel Corporation. All rights reserved. Created by: majid.awad REMOVE-THIS AT intel DOT com This file is licensed under the GPL license. For the full content of this license, see the COPYING file at the top level of this source tree. */ /* * successful unamed semaphore initialization return zero * on successful completion. */ #include #include #include #include #include #include #include #include "posixtest.h" #define TEST "5-2" #define FUNCTION "sem_init" #define ERROR_PREFIX "unexpected error: " FUNCTION " " TEST ": " int main () { sem_t mysemp; if ( sem_init (&mysemp, 0, 1) == 0 ) { puts("TEST PASSED"); sem_destroy(&mysemp); return PTS_PASS; } else { puts("TEST FAILED"); return PTS_FAIL; } }