2003-04-14 Elena Zannoni <ezannoni@redhat.com>

* gdb.threads/schedlock.c: Change type of thread function argument
	to long, to avoid warnings on 64-bit platforms.
This commit is contained in:
Elena Zannoni 2003-04-15 02:23:11 +00:00
parent d5a921c9a8
commit 5dd55bddfe
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-04-14 Elena Zannoni <ezannoni@redhat.com>
* gdb.threads/schedlock.c: Change type of thread function argument
to long, to avoid warnings on 64-bit platforms.
2003-04-14 Elena Zannoni <ezannoni@redhat.com>
* gdb.base/attach.exp: Add new message from ptrace in case of

View File

@ -13,12 +13,15 @@ int main() {
int res;
pthread_t threads[NUM];
void *thread_result;
int i;
long i;
for (i = 0; i < NUM; i++)
{
args[i] = 1;
res = pthread_create(&threads[i], NULL, thread_function, (void *)i);
res = pthread_create(&threads[i],
NULL,
thread_function,
(void *) i);
}
/* schedlock.exp: last thread start. */
@ -29,7 +32,7 @@ int main() {
}
void *thread_function(void *arg) {
int my_number = (int) arg;
int my_number = (long) arg;
int *myp = &args[my_number];
/* Don't run forever. Run just short of it :) */