* gdb.threads/schedlock.c (args): Make unsigned.
authorDaniel Jacobowitz <drow@false.org>
Wed, 23 Oct 2002 03:22:56 +0000 (03:22 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 23 Oct 2002 03:22:56 +0000 (03:22 +0000)
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.threads/schedlock.c

index 3b99bf3368395755abf9b1b961730555387d02ad..41018c7afca8c2c0d5ff3851f40615cd4b5f09d4 100644 (file)
@@ -1,3 +1,17 @@
+2002-10-22  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdb.threads/schedlock.c (args): Make unsigned.
+
+2002-10-21  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdb.asm/asm-source.exp: Add "mips*-*" pattern.  Update line
+       numbers.  Allow "foo2|selected stack frame".
+       * gdb.asm/asmsrc1.s: Use gdbasm_declare and gdbasm_end.
+       * gdb.asm/asmsrc2.s: Likewise.
+       * gdb.asm/common.inc: Define gdbasm_declare and gdbasm_end.  Update
+       comments.
+       * gdb.asm/mips.inc: New file.
+
 2002-10-18  Adam Fedor  <fedor@gnu.org>
 
        * gdb.base/default.exp: Update expected output to include 'ObjC'.
index df361d0e0a795c9ff0ed879697533e9f31f23f6d..033131c2a52d9662d687e1957701ef94c2e8b232 100644 (file)
@@ -7,7 +7,7 @@ void *thread_function(void *arg); /* Pointer to function executed by each thread
 
 #define NUM 5
 
-int args[NUM+1];
+unsigned int args[NUM+1];
 
 int main() {
     int res;