Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
73e61944
Commit
73e61944
authored
Feb 01, 2007
by
istruewing@chilla.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge chilla.local:/home/mydev/mysql-4.0-axmrg
into chilla.local:/home/mydev/mysql-4.1-axmrg
parents
97cf413d
0e9a6468
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
65 additions
and
53 deletions
+65
-53
include/my_global.h
include/my_global.h
+1
-4
include/my_pthread.h
include/my_pthread.h
+9
-8
include/thr_alarm.h
include/thr_alarm.h
+2
-0
mysys/default.c
mysys/default.c
+2
-2
mysys/my_pthread.c
mysys/my_pthread.c
+4
-1
mysys/my_thr_init.c
mysys/my_thr_init.c
+25
-0
mysys/thr_alarm.c
mysys/thr_alarm.c
+13
-13
sql/mysqld.cc
sql/mysqld.cc
+9
-25
No files found.
include/my_global.h
View file @
73e61944
...
...
@@ -415,10 +415,7 @@ int __void__;
#endif
/* Define some useful general macros */
#if defined(__cplusplus) && defined(__GNUC__)
#define max(a, b) ((a) >? (b))
#define min(a, b) ((a) <? (b))
#elif !defined(max)
#if !defined(max)
#define max(a, b) ((a) > (b) ? (a) : (b))
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
...
...
include/my_pthread.h
View file @
73e61944
...
...
@@ -28,14 +28,6 @@
extern
"C"
{
#endif
/* __cplusplus */
/* Thread library */
#define THD_LIB_OTHER 1
#define THD_LIB_NPTL 2
#define THD_LIB_LT 4
extern
uint
thd_lib_detected
;
#if defined(__WIN__) || defined(OS2)
#ifdef OS2
...
...
@@ -684,6 +676,15 @@ extern struct st_my_thread_var *_my_thread_var(void) __attribute__ ((const));
*/
extern
pthread_t
shutdown_th
,
main_th
,
signal_th
;
/* Which kind of thread library is in use */
#define THD_LIB_OTHER 1
#define THD_LIB_NPTL 2
#define THD_LIB_LT 4
extern
uint
thd_lib_detected
;
extern
uint
thr_client_alarm
;
/* statistics_xxx functions are for not essential statistic */
#ifndef thread_safe_increment
...
...
include/thr_alarm.h
View file @
73e61944
...
...
@@ -93,6 +93,8 @@ typedef struct st_alarm {
my_bool
malloced
;
}
ALARM
;
extern
uint
thr_client_alarm
;
#define thr_alarm_init(A) (*(A))=0
#define thr_alarm_in_use(A) (*(A)!= 0)
void
init_thr_alarm
(
uint
max_alarm
);
...
...
mysys/default.c
View file @
73e61944
...
...
@@ -309,7 +309,7 @@ static int search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc,
{
char
**
ext
;
for
(
ext
=
(
char
**
)
f_extensions
;
*
ext
;
*
ext
++
)
for
(
ext
=
(
char
**
)
f_extensions
;
*
ext
;
ext
++
)
{
int
error
;
if
((
error
=
search_default_file_with_ext
(
args
,
alloc
,
dir
,
*
ext
,
...
...
@@ -709,7 +709,7 @@ void print_defaults(const char *conf_file, const char **groups)
#endif
for
(
dirs
=
default_directories
;
*
dirs
;
dirs
++
)
{
for
(
ext
=
(
char
**
)
f_extensions
;
*
ext
;
*
ext
++
)
for
(
ext
=
(
char
**
)
f_extensions
;
*
ext
;
ext
++
)
{
const
char
*
pos
;
char
*
end
;
...
...
mysys/my_pthread.c
View file @
73e61944
...
...
@@ -31,6 +31,7 @@
#endif
uint
thd_lib_detected
;
uint
thr_client_alarm
;
#ifndef my_pthread_setprio
void
my_pthread_setprio
(
pthread_t
thread_id
,
int
prior
)
...
...
@@ -338,7 +339,9 @@ void *sigwait_thread(void *set_arg)
sigaction
(
i
,
&
sact
,
(
struct
sigaction
*
)
0
);
}
}
sigaddset
(
set
,
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
);
/* Ensure that init_thr_alarm() is called */
DBUG_ASSERT
(
thr_client_alarm
);
sigaddset
(
set
,
thr_client_alarm
);
pthread_sigmask
(
SIG_UNBLOCK
,(
sigset_t
*
)
set
,(
sigset_t
*
)
0
);
alarm_thread
=
pthread_self
();
/* For thr_alarm */
...
...
mysys/my_thr_init.c
View file @
73e61944
...
...
@@ -21,6 +21,7 @@
#include "mysys_priv.h"
#include <m_string.h>
#include <signal.h>
#ifdef THREAD
#ifdef USE_TLS
...
...
@@ -44,6 +45,8 @@ pthread_mutexattr_t my_fast_mutexattr;
pthread_mutexattr_t
my_errorcheck_mutexattr
;
#endif
static
uint
get_thread_lib
(
void
);
/*
initialize thread environment
...
...
@@ -57,6 +60,12 @@ pthread_mutexattr_t my_errorcheck_mutexattr;
my_bool
my_thread_global_init
(
void
)
{
thd_lib_detected
=
get_thread_lib
();
if
(
thd_lib_detected
==
THD_LIB_LT
)
thr_client_alarm
=
SIGALRM
;
else
thr_client_alarm
=
SIGUSR1
;
if
(
pthread_key_create
(
&
THR_KEY_mysys
,
0
))
{
fprintf
(
stderr
,
"Can't initialize threads: error %d
\n
"
,
errno
);
...
...
@@ -290,4 +299,20 @@ const char *my_thread_name(void)
}
#endif
/* DBUG_OFF */
static
uint
get_thread_lib
(
void
)
{
char
buff
[
64
];
#ifdef _CS_GNU_LIBPTHREAD_VERSION
confstr
(
_CS_GNU_LIBPTHREAD_VERSION
,
buff
,
sizeof
(
buff
));
if
(
!
strncasecmp
(
buff
,
"NPTL"
,
4
))
return
THD_LIB_NPTL
;
if
(
!
strncasecmp
(
buff
,
"linuxthreads"
,
12
))
return
THD_LIB_LT
;
#endif
return
THD_LIB_OTHER
;
}
#endif
/* THREAD */
mysys/thr_alarm.c
View file @
73e61944
...
...
@@ -36,6 +36,7 @@
#define ETIME ETIMEDOUT
#endif
uint
thr_client_alarm
;
static
int
alarm_aborted
=
1
;
/* No alarm thread */
my_bool
thr_alarm_inited
=
0
;
volatile
my_bool
alarm_thread_running
=
0
;
...
...
@@ -77,12 +78,15 @@ void init_thr_alarm(uint max_alarms)
sigfillset
(
&
full_signal_set
);
/* Neaded to block signals */
pthread_mutex_init
(
&
LOCK_alarm
,
MY_MUTEX_INIT_FAST
);
pthread_cond_init
(
&
COND_alarm
,
NULL
);
if
(
thd_lib_detected
==
THD_LIB_LT
)
thr_client_alarm
=
SIGALRM
;
else
thr_client_alarm
=
SIGUSR1
;
#ifndef USE_ALARM_THREAD
if
(
thd_lib_detected
!=
THD_LIB_LT
)
#endif
{
my_sigset
(
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
,
thread_alarm
);
my_sigset
(
thr_client_alarm
,
thread_alarm
);
}
sigemptyset
(
&
s
);
sigaddset
(
&
s
,
THR_SERVER_ALARM
);
...
...
@@ -103,8 +107,7 @@ void init_thr_alarm(uint max_alarms)
pthread_sigmask
(
SIG_BLOCK
,
&
s
,
NULL
);
/* used with sigwait() */
if
(
thd_lib_detected
==
THD_LIB_LT
)
{
my_sigset
(
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
,
process_alarm
);
/* Linuxthreads */
my_sigset
(
thr_client_alarm
,
process_alarm
);
/* Linuxthreads */
pthread_sigmask
(
SIG_UNBLOCK
,
&
s
,
NULL
);
}
#else
...
...
@@ -284,8 +287,7 @@ sig_handler process_alarm(int sig __attribute__((unused)))
printf
(
"thread_alarm in process_alarm
\n
"
);
fflush
(
stdout
);
#endif
#ifdef DONT_REMEMBER_SIGNAL
my_sigset
(
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
,
process_alarm
);
/* int. thread system calls */
my_sigset
(
thr_client_alarm
,
process_alarm
);
/* int. thread system calls */
#endif
return
;
}
...
...
@@ -332,8 +334,7 @@ static sig_handler process_alarm_part2(int sig __attribute__((unused)))
alarm_data
=
(
ALARM
*
)
queue_element
(
&
alarm_queue
,
i
);
alarm_data
->
alarmed
=
1
;
/* Info to thread */
if
(
pthread_equal
(
alarm_data
->
thread
,
alarm_thread
)
||
pthread_kill
(
alarm_data
->
thread
,
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
))
pthread_kill
(
alarm_data
->
thread
,
thr_client_alarm
))
{
#ifdef MAIN
printf
(
"Warning: pthread_kill couldn't find thread!!!
\n
"
);
...
...
@@ -357,8 +358,7 @@ static sig_handler process_alarm_part2(int sig __attribute__((unused)))
alarm_data
->
alarmed
=
1
;
/* Info to thread */
DBUG_PRINT
(
"info"
,(
"sending signal to waiting thread"
));
if
(
pthread_equal
(
alarm_data
->
thread
,
alarm_thread
)
||
pthread_kill
(
alarm_data
->
thread
,
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
))
pthread_kill
(
alarm_data
->
thread
,
thr_client_alarm
))
{
#ifdef MAIN
printf
(
"Warning: pthread_kill couldn't find thread!!!
\n
"
);
...
...
@@ -947,7 +947,7 @@ static void *signal_hand(void *arg __attribute__((unused)))
#endif
#endif
/* OS2 */
printf
(
"server alarm: %d thread alarm: %d
\n
"
,
THR_SERVER_ALARM
,
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
);
THR_SERVER_ALARM
,
thr_client_alarm
);
DBUG_PRINT
(
"info"
,(
"Starting signal and alarm handling thread"
));
for
(;;)
{
...
...
@@ -1019,11 +1019,11 @@ int main(int argc __attribute__((unused)),char **argv __attribute__((unused)))
sigaddset
(
&
set
,
SIGTSTP
);
#endif
sigaddset
(
&
set
,
THR_SERVER_ALARM
);
sigdelset
(
&
set
,
th
d_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
);
sigdelset
(
&
set
,
th
r_client_alarm
);
(
void
)
pthread_sigmask
(
SIG_SETMASK
,
&
set
,
NULL
);
#ifdef NOT_USED
sigemptyset
(
&
set
);
sigaddset
(
&
set
,
th
d_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
);
sigaddset
(
&
set
,
th
r_client_alarm
);
VOID
(
pthread_sigmask
(
SIG_UNBLOCK
,
&
set
,
(
sigset_t
*
)
0
));
#endif
#endif
/* OS2 */
...
...
sql/mysqld.cc
View file @
73e61944
...
...
@@ -450,6 +450,7 @@ pthread_cond_t COND_refresh,COND_thread_count, COND_slave_stopped,
pthread_cond_t
COND_thread_cache
,
COND_flush_thread_cache
;
pthread_t
signal_thread
;
pthread_attr_t
connection_attrib
;
static
uint
thr_kill_signal
;
/* replication parameters, if master_host is not NULL, we are a slave */
uint
master_port
=
MYSQL_PORT
,
master_connect_retry
=
60
;
...
...
@@ -581,7 +582,6 @@ static void clean_up_mutexes(void);
static
void
wait_for_signal_thread_to_end
(
void
);
static
int
test_if_case_insensitive
(
const
char
*
dir_name
);
static
void
create_pid_file
();
static
uint
get_thread_lib
(
void
);
#ifndef EMBEDDED_LIBRARY
/****************************************************************************
...
...
@@ -621,8 +621,7 @@ static void close_connections(void)
DBUG_PRINT
(
"info"
,(
"Waiting for select thread"
));
#ifndef DONT_USE_THR_ALARM
if
(
pthread_kill
(
select_thread
,
thd_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
))
if
(
pthread_kill
(
select_thread
,
thr_client_alarm
))
break
;
// allready dead
#endif
set_timespec
(
abstime
,
2
);
...
...
@@ -2046,8 +2045,7 @@ static void init_signals(void)
if
(
test_flags
&
TEST_SIGINT
)
{
my_sigset
(
thd_lib_detected
==
THD_LIB_LT
?
SIGINT
:
SIGUSR2
,
end_thread_signal
);
my_sigset
(
thr_kill_signal
,
end_thread_signal
);
}
my_sigset
(
THR_SERVER_ALARM
,
print_signal_warning
);
// Should never be called!
...
...
@@ -2107,10 +2105,10 @@ static void init_signals(void)
if
(
test_flags
&
TEST_SIGINT
)
{
// May be SIGINT
sigdelset
(
&
set
,
th
d_lib_detected
==
THD_LIB_LT
?
SIGINT
:
SIGUSR2
);
sigdelset
(
&
set
,
th
r_kill_signal
);
}
// For alarms
sigdelset
(
&
set
,
th
d_lib_detected
==
THD_LIB_LT
?
SIGALRM
:
SIGUSR1
);
sigdelset
(
&
set
,
th
r_client_alarm
);
sigprocmask
(
SIG_SETMASK
,
&
set
,
NULL
);
pthread_sigmask
(
SIG_SETMASK
,
&
set
,
NULL
);
DBUG_VOID_RETURN
;
...
...
@@ -2166,7 +2164,7 @@ extern "C" void *signal_hand(void *arg __attribute__((unused)))
*/
init_thr_alarm
(
max_connections
+
global_system_variables
.
max_insert_delayed_threads
+
10
);
if
(
thd_lib_detected
!=
THD_LIB_LT
&&
test_flags
&
TEST_SIGINT
)
if
(
thd_lib_detected
!=
THD_LIB_LT
&&
(
test_flags
&
TEST_SIGINT
)
)
{
(
void
)
sigemptyset
(
&
set
);
// Setup up SIGINT for debug
(
void
)
sigaddset
(
&
set
,
SIGINT
);
// For debugging
...
...
@@ -3139,6 +3137,9 @@ int main(int argc, char **argv)
MY_INIT
(
argv
[
0
]);
// init my_sys library & pthreads
/* Set signal used to kill MySQL */
thr_kill_signal
=
thd_lib_detected
==
THD_LIB_LT
?
SIGINT
:
SIGUSR2
;
#ifdef _CUSTOMSTARTUPCONFIG_
if
(
_cust_check_startup
())
{
...
...
@@ -3147,7 +3148,6 @@ int main(int argc, char **argv)
}
#endif
thd_lib_detected
=
get_thread_lib
();
if
(
init_common_variables
(
MYSQL_CONFIG_NAME
,
argc
,
argv
,
load_default_groups
))
unireg_abort
(
1
);
// Will do exit
...
...
@@ -7024,22 +7024,6 @@ static void create_pid_file()
}
static
uint
get_thread_lib
(
void
)
{
char
buff
[
64
];
#ifdef _CS_GNU_LIBPTHREAD_VERSION
confstr
(
_CS_GNU_LIBPTHREAD_VERSION
,
buff
,
sizeof
(
buff
));
if
(
!
strncasecmp
(
buff
,
"NPTL"
,
4
))
return
THD_LIB_NPTL
;
else
if
(
!
strncasecmp
(
buff
,
"linuxthreads"
,
12
))
return
THD_LIB_LT
;
#endif
return
THD_LIB_OTHER
;
}
/*****************************************************************************
Instantiate templates
*****************************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment