- Timestamp:
- 2005-11-14T19:39:26Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- abb79e84
- Parents:
- 35667f8
- Location:
- test
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/fpu/fpu1/test.c
r35667f8 re507afa 46 46 static inline double sqrt(double x) { double v; __asm__ ("fsqrt\n" : "=t" (v) : "0" (x)); return v; } 47 47 48 static volatile int threads_ok;48 static atomic_t threads_ok; 49 49 static waitq_t can_start; 50 50 -
test/fpu/mips1/test.c
r35667f8 re507afa 42 42 #define ATTEMPTS 5 43 43 44 static volatile int threads_ok;44 static atomic_t threads_ok; 45 45 static waitq_t can_start; 46 46 -
test/fpu/sse1/test.c
r35667f8 re507afa 42 42 #define ATTEMPTS 5 43 43 44 static volatile int threads_ok;44 static atomic_t threads_ok; 45 45 static waitq_t can_start; 46 46 -
test/synch/rwlock5/test.c
r35667f8 re507afa 76 76 { 77 77 int i, j, k; 78 int readers, writers;78 count_t readers, writers; 79 79 80 80 printf("Read/write locks test #5\n");
Note:
See TracChangeset
for help on using the changeset viewer.