The Samba-Bugzilla – Attachment 5013 Details for
Bug 6924
Fails to build on QNX because delay variable conflicts with delay system function
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Rename delay to delay_between_ops
0001-Rename-delay-to-delay_between_ops.patch (text/plain), 2.94 KB, created by
Matt Kraai (mail address dead)
on 2009-11-25 16:26:12 UTC
(
hide
)
Description:
Rename delay to delay_between_ops
Filename:
MIME Type:
Creator:
Matt Kraai (mail address dead)
Created:
2009-11-25 16:26:12 UTC
Size:
2.94 KB
patch
obsolete
>From dad8a5a0c21b809b3943386a13c539c3ae9b8f86 Mon Sep 17 00:00:00 2001 >From: Matt Kraai <mkraai@beckman.com> >Date: Wed, 25 Nov 2009 15:22:36 -0800 >Subject: [PATCH] Rename delay to delay_between_ops > >--- > source3/utils/dbwrap_torture.c | 14 +++++++------- > 1 files changed, 7 insertions(+), 7 deletions(-) > >diff --git a/source3/utils/dbwrap_torture.c b/source3/utils/dbwrap_torture.c >index a6e2d2b..7579040 100644 >--- a/source3/utils/dbwrap_torture.c >+++ b/source3/utils/dbwrap_torture.c >@@ -36,7 +36,7 @@ extern bool AllowDebugChange; > #define DEFAULT_DB_NAME "transaction.tdb" > > static int timelimit = 10; >-static int delay = 0; >+static int delay_between_ops = 0; > static int verbose = 0; > static int no_trans = 0; > static char *db_name = (char *)discard_const(DEFAULT_DB_NAME); >@@ -145,7 +145,7 @@ static void test_store_records(struct db_context *db, struct tevent_context *ev) > goto fail; > } > if (verbose) DEBUG(1, ("transaction started\n")); >- do_sleep(delay); >+ do_sleep(delay_between_ops); > } > > if (verbose) DEBUG(1, ("calling fetch_lock\n")); >@@ -155,7 +155,7 @@ static void test_store_records(struct db_context *db, struct tevent_context *ev) > goto fail; > } > if (verbose) DEBUG(1, ("fetched record ok\n")); >- do_sleep(delay); >+ do_sleep(delay_between_ops); > > data.dsize = MAX(rec->value.dsize, sizeof(uint32_t) * (pnn+1)); > data.dptr = (unsigned char *)talloc_zero_size(tmp_ctx, >@@ -185,7 +185,7 @@ static void test_store_records(struct db_context *db, struct tevent_context *ev) > } > talloc_free(rec); > if (verbose) DEBUG(1, ("stored data ok\n")); >- do_sleep(delay); >+ do_sleep(delay_between_ops); > > if (!no_trans) { > if (verbose) DEBUG(1, ("calling transaction_commit\n")); >@@ -205,7 +205,7 @@ static void test_store_records(struct db_context *db, struct tevent_context *ev) > } > talloc_free(data.dptr); > >- do_sleep(delay); >+ do_sleep(delay_between_ops); > } > > goto done; >@@ -233,7 +233,7 @@ int main(int argc, const char *argv[]) > POPT_AUTOHELP > POPT_COMMON_SAMBA > { "timelimit", 't', POPT_ARG_INT, &timelimit, 0, "timelimit", "INTEGER" }, >- { "delay", 'D', POPT_ARG_INT, &delay, 0, "delay (in seconds) between operations", "INTEGER" }, >+ { "delay", 'D', POPT_ARG_INT, &delay_between_ops, 0, "delay (in seconds) between operations", "INTEGER" }, > { "verbose", 'v', POPT_ARG_NONE, &verbose, 0, "switch on verbose mode", NULL }, > { "db-name", 'N', POPT_ARG_STRING, &db_name, 0, "name of the test db", "NAME" }, > { "no-trans", 'n', POPT_ARG_NONE, &no_trans, 0, "use fetch_lock/record store instead of transactions", NULL }, >@@ -313,7 +313,7 @@ int main(int argc, const char *argv[]) > pnn = get_my_vnn(); > > printf("Starting test on node %u. running for %u seconds. " >- "sleep delay: %u seconds.\n", pnn, timelimit, delay); >+ "sleep delay: %u seconds.\n", pnn, timelimit, delay_between_ops); > > if (!verbose && (pnn == 0)) { > tevent_add_timer(ev_ctx, db, timeval_current_ofs(1, 0), each_second, db); >-- >1.6.5.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 6924
: 5013