mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
warnings on windows
This commit is contained in:
@ -54,7 +54,7 @@ pthread_handler_t test_wt(void *arg)
|
|||||||
|
|
||||||
my_rnd_init(&rand, (ulong)(intptr)&m, id);
|
my_rnd_init(&rand, (ulong)(intptr)&m, id);
|
||||||
if (kill_strategy == YOUNGEST)
|
if (kill_strategy == YOUNGEST)
|
||||||
thds[id].thd.weight= (ulong volatile)~my_getsystime();
|
thds[id].thd.weight= (ulong)~my_getsystime();
|
||||||
if (kill_strategy == LOCKS)
|
if (kill_strategy == LOCKS)
|
||||||
thds[id].thd.weight= 0;
|
thds[id].thd.weight= 0;
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ retry:
|
|||||||
if (kill_strategy == LOCKS)
|
if (kill_strategy == LOCKS)
|
||||||
thds[id].thd.weight= 0;
|
thds[id].thd.weight= 0;
|
||||||
if (kill_strategy == YOUNGEST)
|
if (kill_strategy == YOUNGEST)
|
||||||
thds[id].thd.weight= (ulong volatile)~my_getsystime();
|
thds[id].thd.weight= (ulong)~my_getsystime();
|
||||||
}
|
}
|
||||||
else if (kill_strategy == LOCKS)
|
else if (kill_strategy == LOCKS)
|
||||||
thds[id].thd.weight++;
|
thds[id].thd.weight++;
|
||||||
|
Reference in New Issue
Block a user