added dummy Set_pthread_attr()

This commit is contained in:
cebix 2002-02-21 15:12:12 +00:00
parent 2f652a42e5
commit b7e0269519
2 changed files with 13 additions and 0 deletions

View File

@ -1152,6 +1152,16 @@ static void *tick_func(void *arg)
}
/*
* Pthread configuration
*/
void Set_pthread_attr(pthread_attr_t *attr, int priority)
{
// nothing to do
}
/*
* Mutexes
*/

View File

@ -106,6 +106,9 @@ typedef struct timespec tm_time_t;
typedef struct timeval tm_time_t;
#endif
// Setup pthread attributes
extern void Set_pthread_attr(pthread_attr_t *attr, int priority);
// Various definitions
typedef struct rgb_color {
uint8 red;