Changeset bdd9e92 in mainline
- Timestamp:
- 2024-04-30T13:08:15Z (6 months ago)
- Branches:
- master
- Children:
- 7ae01d5
- Parents:
- 522eecf
- git-author:
- Jiri Svoboda <jiri@…> (2024-04-29 17:08:02)
- git-committer:
- Jiri Svoboda <jiri@…> (2024-04-30 13:08:15)
- Location:
- uspace/app/hbench
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hbench/benchlist.c
r522eecf rbdd9e92 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * Copyright (c) 2018 Vojtech Horky 4 4 * All rights reserved. … … 42 42 &benchmark_fibril_mutex, 43 43 &benchmark_file_read, 44 &benchmark_rand_read, 45 &benchmark_seq_read, 44 46 &benchmark_malloc1, 45 47 &benchmark_malloc2, -
uspace/app/hbench/hbench.h
r522eecf rbdd9e92 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * Copyright (c) 2019 Vojtech Horky 4 4 * All rights reserved. … … 135 135 extern benchmark_t benchmark_fibril_mutex; 136 136 extern benchmark_t benchmark_file_read; 137 extern benchmark_t benchmark_rand_read; 138 extern benchmark_t benchmark_seq_read; 137 139 extern benchmark_t benchmark_malloc1; 138 140 extern benchmark_t benchmark_malloc2; -
uspace/app/hbench/meson.build
r522eecf rbdd9e92 1 1 # 2 # Copyright (c) 202 3Jiri Svoboda2 # Copyright (c) 2024 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 deps = [ ' math', 'ipctest' ]29 deps = [ 'block', 'math', 'ipctest' ] 30 30 src = files( 31 31 'benchlist.c', … … 34 34 'main.c', 35 35 'utils.c', 36 'disk/randread.c', 37 'disk/seqread.c', 36 38 'fs/dirread.c', 37 39 'fs/fileread.c',
Note:
See TracChangeset
for help on using the changeset viewer.