Changeset 381c426 in mainline
- Timestamp:
- 2023-12-13T11:45:58Z (11 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 68655bc2
- Parents:
- d53a5ab0
- Location:
- uspace/app/hbench
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hbench/benchlist.c
rd53a5ab0 r381c426 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2018 Vojtech Horky 4 4 * All rights reserved. … … 45 45 &benchmark_malloc2, 46 46 &benchmark_ns_ping, 47 &benchmark_ping_pong 47 &benchmark_ping_pong, 48 &benchmark_read1k, 49 &benchmark_write1k 48 50 }; 49 51 -
uspace/app/hbench/hbench.h
rd53a5ab0 r381c426 1 1 /* 2 * Copyright (c) 20 18Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2019 Vojtech Horky 4 4 * All rights reserved. … … 139 139 extern benchmark_t benchmark_ns_ping; 140 140 extern benchmark_t benchmark_ping_pong; 141 extern benchmark_t benchmark_read1k; 142 extern benchmark_t benchmark_write1k; 141 143 142 144 #endif -
uspace/app/hbench/meson.build
rd53a5ab0 r381c426 38 38 'ipc/ns_ping.c', 39 39 'ipc/ping_pong.c', 40 'ipc/read1k.c', 41 'ipc/write1k.c', 40 42 'malloc/malloc1.c', 41 43 'malloc/malloc2.c',
Note:
See TracChangeset
for help on using the changeset viewer.