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
a941f21b
Commit
a941f21b
authored
Aug 19, 2003
by
kostja@oak.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debug checks removed
parent
75a3c99c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
server-tools/instance-manager/manager.cc
server-tools/instance-manager/manager.cc
+2
-5
No files found.
server-tools/instance-manager/manager.cc
View file @
a941f21b
...
...
@@ -45,11 +45,8 @@ void manager(const char *socket_file_name)
pthread_t
listener_thd_id
;
pthread_attr_t
listener_thd_attr
;
if
(
pthread_attr_init
(
&
listener_thd_attr
))
die
(
"manager(): pthread_attr_init(listener) failed"
);
if
(
pthread_attr_setdetachstate
(
&
listener_thd_attr
,
PTHREAD_CREATE_DETACHED
))
die
(
"manager(): pthread_attr_setdetachstate(listener) failed"
);
pthread_attr_init
(
&
listener_thd_attr
);
pthread_attr_setdetachstate
(
&
listener_thd_attr
,
PTHREAD_CREATE_DETACHED
);
if
(
pthread_create
(
&
listener_thd_id
,
&
listener_thd_attr
,
listener
,
&
listener_args
))
die
(
"manager(): pthread_create(listener) failed"
);
...
...
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