diff options
author | Simo Sorce <ssorce@redhat.com> | 2010-05-25 15:23:55 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2011-08-13 09:54:15 -0400 |
commit | b120c5f28876fd9efe032a6dbecebfaaff7dfd14 (patch) | |
tree | cca3a64d3d4a96d1e49450ebeff374659ed17d2b /source4/torture/raw/oplock.c | |
parent | 813bdf466d1e0262c7b4bdf98343451db08c60f6 (diff) | |
download | samba-b120c5f28876fd9efe032a6dbecebfaaff7dfd14.tar.gz |
torture: use tevent_ functions names instead of the legacy event_ ones
Diffstat (limited to 'source4/torture/raw/oplock.c')
-rw-r--r-- | source4/torture/raw/oplock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/raw/oplock.c b/source4/torture/raw/oplock.c index 01b1dd2b93d..46f2ed32301 100644 --- a/source4/torture/raw/oplock.c +++ b/source4/torture/raw/oplock.c @@ -226,7 +226,7 @@ static void torture_wait_for_oplock_break(struct torture_context *tctx) /* Wait .1 seconds for an oplock break */ ne = tevent_timeval_current_ofs(0, 100000); - if ((te = event_add_timed(tctx->ev, tmp_ctx, ne, timeout_cb, ×up)) + if ((te = tevent_add_timer(tctx->ev, tmp_ctx, ne, timeout_cb, ×up)) == NULL) { torture_comment(tctx, "Failed to wait for an oplock break. " @@ -235,7 +235,7 @@ static void torture_wait_for_oplock_break(struct torture_context *tctx) } while (!timesup && break_info.count < old_count + 1) { - if (event_loop_once(tctx->ev) != 0) { + if (tevent_loop_once(tctx->ev) != 0) { torture_comment(tctx, "Failed to wait for an oplock " "break. test results may not be " "accurate."); @@ -4196,7 +4196,7 @@ bool torture_hold_oplock(struct torture_context *torture, } printf("Waiting for oplock events\n"); - event_loop_wait(ev); + tevent_loop_wait(ev); return true; } |