diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-07-25 08:35:44 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-07-25 12:15:02 +0200 |
commit | 97b1776cb6f56a112fe16e747caaad7473c6bb73 (patch) | |
tree | 7afe016dac032d8198c8df2e7ad3483491968406 /source4/torture/nbench | |
parent | b0f1921bd733e9ad4f8fef720fab2fd0ed675f12 (diff) | |
download | samba-97b1776cb6f56a112fe16e747caaad7473c6bb73.tar.gz samba-97b1776cb6f56a112fe16e747caaad7473c6bb73.tar.bz2 samba-97b1776cb6f56a112fe16e747caaad7473c6bb73.zip |
s4:torture: replace shm_setup() with anonymous_shared_allocate()
metze
Diffstat (limited to 'source4/torture/nbench')
-rw-r--r-- | source4/torture/nbench/nbio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/nbench/nbio.c b/source4/torture/nbench/nbio.c index ca186d007b..c9b369e861 100644 --- a/source4/torture/nbench/nbio.c +++ b/source4/torture/nbench/nbio.c @@ -314,7 +314,7 @@ next: void nbio_shmem(int n, int t_timelimit, int t_warmup) { nprocs = n; - children = shm_setup(sizeof(*children) * nprocs); + children = anonymous_shared_allocate(sizeof(*children) * nprocs); if (!children) { printf("Failed to setup shared memory!\n"); nb_exit(1); |