1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Fixed silly mistake plus extra parenthesis

This commit is contained in:
Mikael Ronstrom
2009-02-23 22:21:22 +01:00
parent 1f5e475ba1
commit d54775cc35
2 changed files with 2 additions and 2 deletions

View File

@@ -279,7 +279,7 @@ int sigwait(sigset_t *setp, int *sigp); /* Use our implemention */
#define my_pthread_setprio(A,B) pthread_setprio_np((A),(B)) #define my_pthread_setprio(A,B) pthread_setprio_np((A),(B))
#elif defined(HAVE_PTHREAD_SETPRIO) #elif defined(HAVE_PTHREAD_SETPRIO)
#define my_pthread_setprio(A,B) pthread_setprio((A),(B)) #define my_pthread_setprio(A,B) pthread_setprio((A),(B))
#elif defined(HAVE_PTHREAD_SETSCHEDPRIO) && !defined (__GNUC) #elif defined(HAVE_PTHREAD_SETSCHEDPRIO) && !defined (__GNUC__)
/* /*
Workaround for bug on Solaris where pthread.h have bug in GNU Workaround for bug on Solaris where pthread.h have bug in GNU
version of pthread.h => configure says yes, header files says version of pthread.h => configure says yes, header files says

View File

@@ -8375,7 +8375,7 @@ static MYSQL_SYSVAR_LONG(force_recovery, innobase_force_recovery,
static MYSQL_SYSVAR_LONG(lock_wait_timeout, innobase_lock_wait_timeout, static MYSQL_SYSVAR_LONG(lock_wait_timeout, innobase_lock_wait_timeout,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY, PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
"Timeout in seconds an InnoDB transaction may wait for a lock before being rolled back.", "Timeout in seconds an InnoDB transaction may wait for a lock before being rolled back.",
NULL, NULL, (long)50, (long)1, (long)1024 * 1024 * 1024, (long)0); NULL, NULL, (long)50, (long)1, (long)(1024*1024*1024), (long)0);
static MYSQL_SYSVAR_LONG(log_buffer_size, innobase_log_buffer_size, static MYSQL_SYSVAR_LONG(log_buffer_size, innobase_log_buffer_size,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY, PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,