Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA/TESTSUITE] build schedlock.c on 64-bit platforms
@ 2003-04-08 21:16 Elena Zannoni
  2003-04-09 13:13 ` Daniel Jacobowitz
  0 siblings, 1 reply; 16+ messages in thread
From: Elena Zannoni @ 2003-04-08 21:16 UTC (permalink / raw)
  To: gdb-patches


I was getting warnings when compiling the test on 64-bit because of the casts.

/home/ezannoni/gdb-sources/src/gdb/testsuite/gdb.threads/schedlock.c: In function `main':
/home/ezannoni/gdb-sources/src/gdb/testsuite/gdb.threads/schedlock.c:21: warning: cast to pointer from integer of different size
/home/ezannoni/gdb-sources/src/gdb/testsuite/gdb.threads/schedlock.c:26: warning: cast to pointer from integer of different size
/home/ezannoni/gdb-sources/src/gdb/testsuite/gdb.threads/schedlock.c: In function `thread_function':
/home/ezannoni/gdb-sources/src/gdb/testsuite/gdb.threads/schedlock.c:32: warning: cast from pointer to integer of different size


Michael, Daniel?

elena

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

	* gdb.threads/schedlock.c: Cast to thread function argument to
	long, for 64-bit platforms.


Index: schedlock.c
===================================================================
RCS file: /cvs/uberbaum/gdb/testsuite/gdb.threads/schedlock.c,v
retrieving revision 1.2
diff -u -p -r1.2 schedlock.c
--- schedlock.c	23 Oct 2002 03:22:56 -0000	1.2
+++ schedlock.c	8 Apr 2003 20:56:31 -0000
@@ -18,18 +18,21 @@ int main() {
     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 *) (long) i);
       }
 
     /* schedlock.exp: last thread start.  */
     args[i] = 1;
-    thread_function ((void *) i);
+    thread_function ((void *) (long) i);
 
     exit(EXIT_SUCCESS);
 }
 
 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 :)  */



^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2003-04-15  2:24 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-08 21:16 [RFA/TESTSUITE] build schedlock.c on 64-bit platforms Elena Zannoni
2003-04-09 13:13 ` Daniel Jacobowitz
2003-04-10 14:08   ` Elena Zannoni
2003-04-10 14:19     ` Daniel Jacobowitz
2003-04-10 14:35       ` Andrew Cagney
2003-04-10 15:16         ` Andreas Schwab
2003-04-10 15:20           ` Daniel Jacobowitz
2003-04-10 16:05             ` Elena Zannoni
2003-04-10 16:36               ` Andreas Schwab
2003-04-10 16:12             ` Andreas Schwab
2003-04-10 17:45               ` Andrew Cagney
2003-04-10 17:48                 ` Daniel Jacobowitz
2003-04-11  5:18       ` Michael Snyder
2003-04-15  1:48         ` Elena Zannoni
2003-04-15  2:06           ` Daniel Jacobowitz
2003-04-15  2:24             ` Elena Zannoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox