Changeset cd8ad52 in mainline for kernel/test/mm/slab2.c
- Timestamp:
- 2008-06-03T14:58:05Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b63f8569
- Parents:
- 7ac426e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/mm/slab2.c
r7ac426e rcd8ad52 151 151 152 152 if (!sh_quiet) 153 printf("Starting thread #% llu...\n",THREAD->tid);153 printf("Starting thread #%" PRIu64 "...\n", THREAD->tid); 154 154 155 155 /* Alloc all */ 156 156 if (!sh_quiet) 157 printf("Thread #% lluallocating...\n", THREAD->tid);157 printf("Thread #%" PRIu64 " allocating...\n", THREAD->tid); 158 158 159 159 while (1) { … … 167 167 168 168 if (!sh_quiet) 169 printf("Thread #% llureleasing...\n", THREAD->tid);169 printf("Thread #%" PRIu64 " releasing...\n", THREAD->tid); 170 170 171 171 while (data) { … … 177 177 178 178 if (!sh_quiet) 179 printf("Thread #% lluallocating...\n", THREAD->tid);179 printf("Thread #%" PRIu64 " allocating...\n", THREAD->tid); 180 180 181 181 while (1) { … … 189 189 190 190 if (!sh_quiet) 191 printf("Thread #% llureleasing...\n", THREAD->tid);191 printf("Thread #%" PRIu64 " releasing...\n", THREAD->tid); 192 192 193 193 while (data) { … … 199 199 200 200 if (!sh_quiet) 201 printf("Thread #% llufinished\n", THREAD->tid);201 printf("Thread #%" PRIu64 " finished\n", THREAD->tid); 202 202 203 203 slab_print_list();
Note:
See TracChangeset
for help on using the changeset viewer.