2004-03-05 Joel Sherrill <joel@OARcorp.com>

* psxmsgq01/init.c, psxtimer/psxtimer.c: Eliminate warning from
	previous patch.
This commit is contained in:
Joel Sherrill
2004-03-05 15:49:39 +00:00
parent d1266a5990
commit 8a41da4108
3 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2004-03-05 Joel Sherrill <joel@OARcorp.com>
* psxmsgq01/init.c, psxtimer/psxtimer.c: Eliminate warning from
previous patch.
2004-02-26 Sébastien Barré <sbarre@sdelcc.com>
PR 582/core

View File

@@ -1004,8 +1004,10 @@ void verify_with_threads()
int status;
pthread_t id;
Test_Message_t *ptr;
#if 0
unsigned int priority;
char message[100];
#endif
#if 0

View File

@@ -328,7 +328,7 @@ void *POSIX_Init (
params_c.period.tv_nsec = 000000000; /* nanoseconds */
params_c.signo = SIGALRM;
if (pthread_create (&tc, &attr, task_c, &params_c) != 0) {
perror ("Error in trhead create for task c\n");
perror ("Error in thread create for task c\n");
}