Changeset fe656783 in mainline
- Timestamp:
- 2019-01-06T22:19:21Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d926f42
- Parents:
- 1bad5fd
- git-author:
- Vojtech Horky <vojtech.horky@…> (2019-01-06 22:13:04)
- git-committer:
- Vojtech Horky <vojtech.horky@…> (2019-01-06 22:19:21)
- Files:
-
- 3 edited
- 16 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r1bad5fd rfe656783 106 106 uspace/app/getterm/getterm 107 107 uspace/app/gunzip/gunzip 108 uspace/app/hbench/hbench 108 109 uspace/app/inet/inet 109 110 uspace/app/init/init … … 130 131 uspace/app/nterm/nterm 131 132 uspace/app/pci/pci 132 uspace/app/perf/perf133 133 uspace/app/ping/ping 134 134 uspace/app/ping6/ping6 -
boot/Makefile.common
r1bad5fd rfe656783 178 178 fdisk \ 179 179 gunzip \ 180 hbench \ 180 181 inet \ 181 182 kill \ … … 191 192 mkmfs \ 192 193 nic \ 193 perf \194 194 sbi \ 195 195 sportdmp \ -
uspace/Makefile
r1bad5fd rfe656783 50 50 app/getterm \ 51 51 app/gunzip \ 52 app/hbench \ 52 53 app/init \ 53 54 app/inet \ … … 67 68 app/nterm \ 68 69 app/pci \ 69 app/perf \70 70 app/redir \ 71 71 app/sbi \ -
uspace/app/hbench/Makefile
r1bad5fd rfe656783 31 31 LIBS = math 32 32 33 BINARY = perf33 BINARY = hbench 34 34 35 35 SOURCES = \ 36 36 benchlist.c \ 37 37 csv.c \ 38 main.c \ 38 39 params.c \ 39 perf.c \40 40 fs/dirread.c \ 41 41 fs/fileread.c \ -
uspace/app/hbench/benchlist.c
r1bad5fd rfe656783 28 28 */ 29 29 30 /** @addtogroup perf30 /** @addtogroup hbench 31 31 * @{ 32 32 */ -
uspace/app/hbench/benchlist.h
r1bad5fd rfe656783 28 28 */ 29 29 30 /** @addtogroup perf30 /** @addtogroup hbench 31 31 * @{ 32 32 */ … … 37 37 #define BENCHLIST_H_ 38 38 39 #include " perf.h"39 #include "hbench.h" 40 40 41 41 extern benchmark_t bench_dir_read; -
uspace/app/hbench/csv.c
r1bad5fd rfe656783 27 27 */ 28 28 29 /** @addtogroup perf29 /** @addtogroup hbench 30 30 * @{ 31 31 */ -
uspace/app/hbench/csv.h
r1bad5fd rfe656783 27 27 */ 28 28 29 /** @addtogroup perf29 /** @addtogroup hbench 30 30 * @{ 31 31 */ … … 39 39 #include <stdio.h> 40 40 #include <perf.h> 41 #include " perf.h"41 #include "hbench.h" 42 42 43 43 extern errno_t csv_report_open(const char *); -
uspace/app/hbench/doc/doxygroups.h
r1bad5fd rfe656783 1 /** @addtogroup perf perf2 * @brief User space performance measuring tool1 /** @addtogroup hbench hbench 2 * @brief HelenOS user space benchmarks 3 3 * @ingroup apps 4 4 * -
uspace/app/hbench/fs/dirread.c
r1bad5fd rfe656783 28 28 */ 29 29 30 /** @addtogroup perf30 /** @addtogroup hbench 31 31 * @{ 32 32 */ … … 37 37 #include <stdlib.h> 38 38 #include "../benchlist.h" 39 #include "../ perf.h"39 #include "../hbench.h" 40 40 #include "../params.h" 41 41 -
uspace/app/hbench/fs/fileread.c
r1bad5fd rfe656783 28 28 */ 29 29 30 /** @addtogroup perf30 /** @addtogroup hbench 31 31 * @{ 32 32 */ … … 36 36 #include <stdlib.h> 37 37 #include "../benchlist.h" 38 #include "../ perf.h"38 #include "../hbench.h" 39 39 #include "../params.h" 40 40 -
uspace/app/hbench/hbench.h
r1bad5fd rfe656783 27 27 */ 28 28 29 /** @addtogroup perf29 /** @addtogroup hbench 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef PERF_H_36 #define PERF_H_35 #ifndef HBENCH_H_ 36 #define HBENCH_H_ 37 37 38 38 #include <stdbool.h> -
uspace/app/hbench/ipc/ns_ping.c
r1bad5fd rfe656783 33 33 #include <str_error.h> 34 34 #include "../benchlist.h" 35 #include "../ perf.h"35 #include "../hbench.h" 36 36 37 37 static bool runner(stopwatch_t *stopwatch, uint64_t niter, -
uspace/app/hbench/ipc/ping_pong.c
r1bad5fd rfe656783 33 33 #include <str_error.h> 34 34 #include "../benchlist.h" 35 #include "../ perf.h"35 #include "../hbench.h" 36 36 37 37 static ipc_test_t *test = NULL; -
uspace/app/hbench/main.c
r1bad5fd rfe656783 28 28 */ 29 29 30 /** @addtogroup perf30 /** @addtogroup hbench 31 31 * @{ 32 32 */ … … 49 49 #include "benchlist.h" 50 50 #include "csv.h" 51 #include "hbench.h" 51 52 #include "params.h" 52 #include "perf.h"53 53 54 54 #define MIN_DURATION_SECS 10 -
uspace/app/hbench/malloc/malloc1.c
r1bad5fd rfe656783 31 31 #include <stdlib.h> 32 32 #include "../benchlist.h" 33 #include "../ perf.h"33 #include "../hbench.h" 34 34 35 35 static bool runner(stopwatch_t *stopwatch, uint64_t size, -
uspace/app/hbench/malloc/malloc2.c
r1bad5fd rfe656783 30 30 #include <stdio.h> 31 31 #include "../benchlist.h" 32 #include "../ perf.h"32 #include "../hbench.h" 33 33 34 34 static bool runner(stopwatch_t *stopwatch, uint64_t niter, -
uspace/app/hbench/params.c
r1bad5fd rfe656783 27 27 */ 28 28 29 /** @addtogroup perf29 /** @addtogroup hbench 30 30 * @{ 31 31 */ -
uspace/app/hbench/params.h
r1bad5fd rfe656783 27 27 */ 28 28 29 /** @addtogroup perf29 /** @addtogroup hbench 30 30 * @{ 31 31 */
Note:
See TracChangeset
for help on using the changeset viewer.