mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-14 21:03:31 +08:00
* gdb.mi/nsintrall.c (main): Fix off-by-one error.
* gdb.threads/pending-step.c (main): Fix off-by-one error. * gdb.threads/schedlock.c (main): Fix off-by-one error.
This commit is contained in:
parent
0090345643
commit
e2009e9879
@ -1,3 +1,9 @@
|
||||
2009-05-11 Doug Evans <dje@sebabeach.org>
|
||||
|
||||
* gdb.mi/nsintrall.c (main): Fix off-by-one error.
|
||||
* gdb.threads/pending-step.c (main): Fix off-by-one error.
|
||||
* gdb.threads/schedlock.c (main): Fix off-by-one error.
|
||||
|
||||
2009-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* gdb.cp/expand-sals.exp, gdb.cp/expand-sals.cc: New.
|
||||
|
@ -35,7 +35,7 @@ int main() {
|
||||
for (i = 1; i <= NUM; i++)
|
||||
{
|
||||
args[i] = 1;
|
||||
res = pthread_create(&threads[i],
|
||||
res = pthread_create(&threads[i - 1],
|
||||
NULL,
|
||||
thread_function,
|
||||
(void *) i);
|
||||
|
@ -34,7 +34,7 @@ int main() {
|
||||
for (i = 1; i <= NUM; i++)
|
||||
{
|
||||
args[i] = 1;
|
||||
res = pthread_create(&threads[i],
|
||||
res = pthread_create(&threads[i - 1],
|
||||
NULL,
|
||||
thread_function,
|
||||
(void *) i);
|
||||
|
@ -35,7 +35,7 @@ int main() {
|
||||
for (i = 1; i <= NUM; i++)
|
||||
{
|
||||
args[i] = 1;
|
||||
res = pthread_create(&threads[i],
|
||||
res = pthread_create(&threads[i - 1],
|
||||
NULL,
|
||||
thread_function,
|
||||
(void *) i);
|
||||
|
Loading…
Reference in New Issue
Block a user