diff options
author | rpj <rpj> | 2002-02-03 22:50:19 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-02-03 22:50:19 +0000 |
commit | d432fab8dc7bcaa47e59c41ce3e94f88380b80a2 (patch) | |
tree | 765197a3f6a65f6f80113652d25e508690f5ca83 /tests | |
parent | 4a72430d821b96add23846980d07f5a01059029d (diff) |
Change #pragma inline_depth(8) to use empty () for default value.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cleanup0.c | 2 | ||||
-rw-r--r-- | tests/cleanup1.c | 2 | ||||
-rw-r--r-- | tests/cleanup2.c | 2 | ||||
-rw-r--r-- | tests/cleanup3.c | 2 | ||||
-rw-r--r-- | tests/condvar7.c | 2 | ||||
-rw-r--r-- | tests/condvar8.c | 2 | ||||
-rw-r--r-- | tests/condvar9.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/cleanup0.c b/tests/cleanup0.c index 9cd9c5c..a237be4 100644 --- a/tests/cleanup0.c +++ b/tests/cleanup0.c @@ -118,7 +118,7 @@ mythread(void * arg) pthread_cleanup_pop(1); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif return (void *) result; diff --git a/tests/cleanup1.c b/tests/cleanup1.c index 52a67c7..a5313d9 100644 --- a/tests/cleanup1.c +++ b/tests/cleanup1.c @@ -128,7 +128,7 @@ mythread(void * arg) pthread_cleanup_pop(0); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif return (void *) result; diff --git a/tests/cleanup2.c b/tests/cleanup2.c index 4d1fafe..5db9e58 100644 --- a/tests/cleanup2.c +++ b/tests/cleanup2.c @@ -112,7 +112,7 @@ mythread(void * arg) pthread_cleanup_pop(1); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif return (void *) result; diff --git a/tests/cleanup3.c b/tests/cleanup3.c index 2d44f79..c98dd62 100644 --- a/tests/cleanup3.c +++ b/tests/cleanup3.c @@ -115,7 +115,7 @@ mythread(void * arg) pthread_cleanup_pop(0); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif return (void *) result; diff --git a/tests/condvar7.c b/tests/condvar7.c index 0e52c64..6ac52f7 100644 --- a/tests/condvar7.c +++ b/tests/condvar7.c @@ -126,7 +126,7 @@ mythread(void * arg) pthread_cleanup_pop(0); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif assert(cvthing.shared > 0); diff --git a/tests/condvar8.c b/tests/condvar8.c index 6f2b458..48486d4 100644 --- a/tests/condvar8.c +++ b/tests/condvar8.c @@ -126,7 +126,7 @@ mythread(void * arg) pthread_cleanup_pop(0); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif assert(cvthing.shared > 0); diff --git a/tests/condvar9.c b/tests/condvar9.c index e06df17..bdf10df 100644 --- a/tests/condvar9.c +++ b/tests/condvar9.c @@ -131,7 +131,7 @@ mythread(void * arg) pthread_cleanup_pop(0); #ifdef _MSC_VER -#pragma inline_depth(8) +#pragma inline_depth() #endif assert(cvthing.shared > 0); |