Remove references to non-existent '/usr/include/nptl' and '/usr/lib/nptl'
from compile directive comments in the source files.

Signed-off-by: Sebastien Dugue <[EMAIL PROTECTED]>
Cc: Darren Hart <[EMAIL PROTECTED]>
Cc: Tim Chavez <[EMAIL PROTECTED]>
---
 .../realtime/func/async_handler/async_handler.c    |    4 ++--
 .../realtime/func/async_handler/async_handler_jk.c |    4 ++--
 .../func/async_handler/async_handler_tsc.c         |    5 ++---
 .../realtime/func/hrtimer-prio/hrtimer-prio.c      |    4 ++--
 testcases/realtime/func/pi-tests/testpi-1.c        |    3 +--
 testcases/realtime/func/pi-tests/testpi-7.c        |    3 +--
 testcases/realtime/func/pi_perf/pi_perf.c          |    4 ++--
 testcases/realtime/func/prio-wake/prio-wake.c      |    5 ++---
 .../pthread_kill_latency/pthread_kill_latency.c    |    4 ++--
 .../realtime/perf/latency/pthread_cond_latency.c   |    5 ++---
 .../realtime/perf/latency/pthread_cond_many.c      |    5 ++---
 .../realtime/stress/pi-tests/lookup_pi_state.c     |    5 ++---
 testcases/realtime/stress/pi-tests/testpi-3.c      |    4 ++--
 13 files changed, 24 insertions(+), 31 deletions(-)

diff --git a/testcases/realtime/func/async_handler/async_handler.c 
b/testcases/realtime/func/async_handler/async_handler.c
index 6beae71..b02a42d 100644
--- a/testcases/realtime/func/async_handler/async_handler.c
+++ b/testcases/realtime/func/async_handler/async_handler.c
@@ -28,8 +28,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *     -L/usr/lib/nptl -lpthread -lrt -lm async_handler.c -o async_handler
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 async_handler.c -o async_handler
  *
  * AUTHOR
  *     Darren Hart <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/func/async_handler/async_handler_jk.c 
b/testcases/realtime/func/async_handler/async_handler_jk.c
index 3695ab2..db2cb9a 100644
--- a/testcases/realtime/func/async_handler/async_handler_jk.c
+++ b/testcases/realtime/func/async_handler/async_handler_jk.c
@@ -31,8 +31,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *     -L/usr/lib/nptl -lpthread -lrt -lm async_handler_jk.c -o 
async_handler_jk
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 async_handler_jk.c -o async_handler_jk
  *
  * AUTHOR
  *      John Kacur <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/func/async_handler/async_handler_tsc.c 
b/testcases/realtime/func/async_handler/async_handler_tsc.c
index bf04df9..bb98e3c 100644
--- a/testcases/realtime/func/async_handler/async_handler_tsc.c
+++ b/testcases/realtime/func/async_handler/async_handler_tsc.c
@@ -31,9 +31,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *                         -L/usr/lib/nptl -lpthread -lrt -lm 
async_handler_tsc.c
- *                 -o async_handler_tsc
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -lpthread -lrt -lm
+ *                 async_handler_tsc.c -o async_handler_tsc
  *
  * AUTHOR
  *      Darren Hart <[EMAIL PROTECTED]> 
diff --git a/testcases/realtime/func/hrtimer-prio/hrtimer-prio.c 
b/testcases/realtime/func/hrtimer-prio/hrtimer-prio.c
index 981390e..ffd2707 100644
--- a/testcases/realtime/func/hrtimer-prio/hrtimer-prio.c
+++ b/testcases/realtime/func/hrtimer-prio/hrtimer-prio.c
@@ -31,8 +31,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *     -L/usr/lib/nptl -lpthread -lrt -lm hrtimer-prio -o hrtimer-prio.c
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 hrtimer-prio -o hrtimer-prio.c
  *
  * AUTHOR
  *      Darren Hart <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/func/pi-tests/testpi-1.c 
b/testcases/realtime/func/pi-tests/testpi-1.c
index 4b627e3..7ca163a 100644
--- a/testcases/realtime/func/pi-tests/testpi-1.c
+++ b/testcases/realtime/func/pi-tests/testpi-1.c
@@ -27,8 +27,7 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      Use "-j" to enable jvm simulator.
  *
- *      Compilation : gcc -lrt -lpthread -D_GNU_SOURCE -I/usr/include/nptl
- *                  -o testpi-1 testpi-1.c
+ *      Compilation : gcc -lrt -lpthread -D_GNU_SOURCE -o testpi-1 testpi-1.c
  *
  * AUTHOR
  *
diff --git a/testcases/realtime/func/pi-tests/testpi-7.c 
b/testcases/realtime/func/pi-tests/testpi-7.c
index 0ef0b2c..262a7c9 100644
--- a/testcases/realtime/func/pi-tests/testpi-7.c
+++ b/testcases/realtime/func/pi-tests/testpi-7.c
@@ -27,8 +27,7 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      Use "-j" to enable jvm simulator.
  *
- *      Compilation : gcc testpi-7.c -lm -L/usr/lib/nptl -lpthread -lrt
- *                   -D_GNU_SOURCE -I/usr/include/nptl -o testpi-7
+ *      Compilation : gcc -D_GNU_SOURCE -lm -lpthread -lrt -o testpi-7 
testpi-7.c
  *
  * AUTHOR
  *      Darren Hart <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/func/pi_perf/pi_perf.c 
b/testcases/realtime/func/pi_perf/pi_perf.c
index 33f054b..031fefe 100644
--- a/testcases/realtime/func/pi_perf/pi_perf.c
+++ b/testcases/realtime/func/pi_perf/pi_perf.c
@@ -31,8 +31,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *     -L/usr/lib/nptl -lpthread -lrt -lm pi_perf.c -o pi_perf
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 pi_perf.c -o pi_perf
  *
  * AUTHOR
  *     Author: Sripathi Kodi <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/func/prio-wake/prio-wake.c 
b/testcases/realtime/func/prio-wake/prio-wake.c
index 6efd1a1..6d361c7 100644
--- a/testcases/realtime/func/prio-wake/prio-wake.c
+++ b/testcases/realtime/func/prio-wake/prio-wake.c
@@ -35,9 +35,8 @@
  *
  * USAGE:
  *
- *     Compilation: gcc -O2 -g -Wall -D_GNU_SOURCE -I/usr/include/nptl
- *                   -I../../include -L/usr/lib/nptl -lpthread -lrt -lm
- *                  -c -o prio-wake.o prio-wake.c
+ *     Compilation : gcc -O2 -g -Wall -D_GNU_SOURCE -I../../include
+ *                  -lpthread -lrt -lm -c -o prio-wake.o prio-wake.c
  *
  * AUTHOR
  *      Darren Hart <[EMAIL PROTECTED]>
diff --git 
a/testcases/realtime/func/pthread_kill_latency/pthread_kill_latency.c 
b/testcases/realtime/func/pthread_kill_latency/pthread_kill_latency.c
index 47aca41..eaae5e0 100644
--- a/testcases/realtime/func/pthread_kill_latency/pthread_kill_latency.c
+++ b/testcases/realtime/func/pthread_kill_latency/pthread_kill_latency.c
@@ -33,8 +33,8 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      pthread_kill_latency [-v{1234}]
  *
- *      Compilation :gcc pthread_kill_latency.c -lpthread -lrt -lm 
-D_GNU_SOURCE
- *                       -I/usr/include/nptl -o pthread_kill_latency
+ *      Compilation :gcc -D_GNU_SOURCE -lpthread -lrt -lm 
pthread_kill_latency.c
+ *                  -o pthread_kill_latency
  *
  * AUTHOR
  *      Sripathi Kodi <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/perf/latency/pthread_cond_latency.c 
b/testcases/realtime/perf/latency/pthread_cond_latency.c
index 871f557..4e1c5bf 100644
--- a/testcases/realtime/perf/latency/pthread_cond_latency.c
+++ b/testcases/realtime/perf/latency/pthread_cond_latency.c
@@ -26,9 +26,8 @@
  *     Use run_auto.sh script in current directory to build and run test.
  *     Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *                 -L/usr/lib/nptl -lpthread -lrt -lm pthread_cond_latency.c 
- *                 -o pthread_cond_latency
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include
+ *      -lpthread -lrt -lm pthread_cond_latency.c -o pthread_cond_latency
  *
  * AUTHOR
  *      Paul E. McKenney <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/perf/latency/pthread_cond_many.c 
b/testcases/realtime/perf/latency/pthread_cond_many.c
index 23e7e28..24257f8 100644
--- a/testcases/realtime/perf/latency/pthread_cond_many.c
+++ b/testcases/realtime/perf/latency/pthread_cond_many.c
@@ -26,9 +26,8 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *                 -L/usr/lib/nptl -lpthread -lrt -lm pthread_cond_many.c
- *                  -o pthread_cond_many
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include
+ *                 -lpthread -lrt -lm pthread_cond_many.c -o pthread_cond_many
  *
  * AUTHOR
  *      Paul E. McKenney <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/stress/pi-tests/lookup_pi_state.c 
b/testcases/realtime/stress/pi-tests/lookup_pi_state.c
index 830a798..d9b68fa 100644
--- a/testcases/realtime/stress/pi-tests/lookup_pi_state.c
+++ b/testcases/realtime/stress/pi-tests/lookup_pi_state.c
@@ -26,9 +26,8 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *                         -L/usr/lib/nptl -lpthread -lrt -lm lookup_pi_state.c
- *                  -o lookup_pi_state
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 lookup_pi_state.c -o lookup_pi_state
  *
  * AUTHOR
  *      Darren Hart <[EMAIL PROTECTED]>
diff --git a/testcases/realtime/stress/pi-tests/testpi-3.c 
b/testcases/realtime/stress/pi-tests/testpi-3.c
index 8920d83..1e28b08 100644
--- a/testcases/realtime/stress/pi-tests/testpi-3.c
+++ b/testcases/realtime/stress/pi-tests/testpi-3.c
@@ -26,8 +26,8 @@
  *      Use run_auto.sh script in current directory to build and run test.
  *      Use "-j" to enable jvm simulator.
  *
- *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I/usr/include/nptl 
-I../../include
- *                 -L/usr/lib/nptl -lpthread -lrt -lm testpi-3.c -o testpi-3
+ *     Compilation: gcc -O2 -g -D_GNU_SOURCE -I../../include -lpthread -lrt -lm
+ *                 testpi-3.c -o testpi-3
  *
  * AUTHOR
  *
-- 
1.5.4.rc2.84.gf85fd-dirty


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to