Changeset 381c426 in mainline


Ignore:
Timestamp:
2023-12-13T11:45:58Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/simplify-dev-export
Children:
68655bc2
Parents:
d53a5ab0
Message:

IPC read 1k / write 1k benchmarks

Location:
uspace/app/hbench
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/hbench/benchlist.c

    rd53a5ab0 r381c426  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * Copyright (c) 2018 Vojtech Horky
    44 * All rights reserved.
     
    4545        &benchmark_malloc2,
    4646        &benchmark_ns_ping,
    47         &benchmark_ping_pong
     47        &benchmark_ping_pong,
     48        &benchmark_read1k,
     49        &benchmark_write1k
    4850};
    4951
  • uspace/app/hbench/hbench.h

    rd53a5ab0 r381c426  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * Copyright (c) 2019 Vojtech Horky
    44 * All rights reserved.
     
    139139extern benchmark_t benchmark_ns_ping;
    140140extern benchmark_t benchmark_ping_pong;
     141extern benchmark_t benchmark_read1k;
     142extern benchmark_t benchmark_write1k;
    141143
    142144#endif
  • uspace/app/hbench/meson.build

    rd53a5ab0 r381c426  
    3838        'ipc/ns_ping.c',
    3939        'ipc/ping_pong.c',
     40        'ipc/read1k.c',
     41        'ipc/write1k.c',
    4042        'malloc/malloc1.c',
    4143        'malloc/malloc2.c',
Note: See TracChangeset for help on using the changeset viewer.