/* * COPYRIGHT (c) 1989-2007. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include #include /*PAGE * * 11.3.1 Mutex Initialization Attributes, P1003.1c/Draft 10, p. 81 */ int pthread_mutexattr_init( pthread_mutexattr_t *attr ) { if ( !attr ) return EINVAL; *attr = _POSIX_Mutex_Default_attributes; return 0; }