summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2002-10-23 03:22:56 +0000
committerDaniel Jacobowitz <dan@debian.org>2002-10-23 03:22:56 +0000
commite9ffef4230f217e88adfac71b7500cc9ba2519e2 (patch)
treea593d12eee2d41718d4b43fd54bf3ce9e02839e6
parent9913c7ef0bd925879d5eab0109a85c574227a683 (diff)
downloadgdb-e9ffef4230f217e88adfac71b7500cc9ba2519e2.tar.gz
* gdb.threads/schedlock.c (args): Make unsigned.
-rw-r--r--gdb/testsuite/ChangeLog14
-rw-r--r--gdb/testsuite/gdb.threads/schedlock.c2
2 files changed, 15 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 3b99bf33683..41018c7afca 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -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'.
diff --git a/gdb/testsuite/gdb.threads/schedlock.c b/gdb/testsuite/gdb.threads/schedlock.c
index df361d0e0a7..033131c2a52 100644
--- a/gdb/testsuite/gdb.threads/schedlock.c
+++ b/gdb/testsuite/gdb.threads/schedlock.c
@@ -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;