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
97523591
Commit
97523591
authored
Jan 13, 2009
by
Chad MILLER
Browse files
Options
Browse Files
Download
Plain Diff
Merge fix for bug 38364.
parents
27a2c739
f4d0b476
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
mysys/my_init.c
mysys/my_init.c
+5
-3
No files found.
mysys/my_init.c
View file @
97523591
...
...
@@ -78,8 +78,12 @@ my_bool my_init(void)
my_umask
=
0660
;
/* Default umask for new files */
my_umask_dir
=
0700
;
/* Default umask for new directories */
init_glob_errs
();
#if defined(THREAD) && defined(SAFE_MUTEX)
#if defined(THREAD)
if
(
my_thread_global_init
())
return
1
;
# if defined(SAFE_MUTEX)
safe_mutex_global_init
();
/* Must be called early */
# endif
#endif
#if defined(THREAD) && defined(MY_PTHREAD_FASTMUTEX) && !defined(SAFE_MUTEX)
fastmutex_global_init
();
/* Must be called early */
...
...
@@ -89,8 +93,6 @@ my_bool my_init(void)
#if defined(HAVE_PTHREAD_INIT)
pthread_init
();
/* Must be called before DBUG_ENTER */
#endif
if
(
my_thread_global_init
())
return
1
;
#if !defined( __WIN__) && !defined(__NETWARE__)
sigfillset
(
&
my_signals
);
/* signals blocked by mf_brkhant */
#endif
...
...
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