Changeset 2d11a7d8 in mainline for uspace/app/tester/loop/loop1.c
- Timestamp:
- 2009-06-30T15:54:14Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c40f883
- Parents:
- db24058
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/loop/loop1.c
rdb24058 r2d11a7d8 31 31 #include "../tester.h" 32 32 33 char *test_loop1( bool quiet)33 char *test_loop1(void) 34 34 { 35 printf("Looping...\n");36 while ( 1);37 printf("Survived endless loop?!!\n");38 39 return NULL;35 TPRINTF("Looping..."); 36 while (true); 37 TPRINTF("\n"); 38 39 return "Survived endless loop"; 40 40 } 41
Note:
See TracChangeset
for help on using the changeset viewer.