/* * Copyright (c) 2002, Intel Corporation. All rights reserved. * Created by: bing.wei.liu 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. * Test that the macro PTHREAD_COND_INITIALIZER can be used to intiailize * condition variables that are statically allocated. * */ #include #include #include #include "posixtest.h" pthread_cond_t cond = PTHREAD_COND_INITIALIZER; int main() { printf("Test PASSED\n"); return PTS_PASS; }