Changeset faf38b2 in mainline for uspace/app/top/ps.c
- Timestamp:
- 2010-04-09T09:41:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 638927a
- Parents:
- a325832
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/top/ps.c
ra325832 rfaf38b2 86 86 int thread_count = THREAD_COUNT; 87 87 thread_info_t *threads = malloc(thread_count * sizeof(thread_info_t)); 88 int result = get_task_threads(t askid, threads, sizeof(thread_info_t) * thread_count);88 int result = get_task_threads(threads, sizeof(thread_info_t) * thread_count); 89 89 90 90 while (result > thread_count) { 91 91 thread_count *= 2; 92 92 threads = realloc(threads, thread_count * sizeof(thread_info_t)); 93 result = get_task_threads(t askid, threads, sizeof(thread_info_t) * thread_count);93 result = get_task_threads(threads, sizeof(thread_info_t) * thread_count); 94 94 } 95 95
Note:
See TracChangeset
for help on using the changeset viewer.