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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
3af3e696
Commit
3af3e696
authored
Mar 26, 2008
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-build
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-build
parents
9ed9e12f
cfb9c845
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
support-files/mysql.server.sh
support-files/mysql.server.sh
+28
-5
No files found.
support-files/mysql.server.sh
View file @
3af3e696
...
...
@@ -150,24 +150,47 @@ parse_manager_arguments() {
}
wait_for_pid
()
{
verb
=
"
$1
"
manager_pid
=
"
$2
"
# process ID of the program operating on the pid-file
i
=
0
avoid_race_condition
=
"by checking again"
while
test
$i
-ne
$service_startup_timeout
;
do
sleep
1
case
"
$
1
"
in
case
"
$
verb
"
in
'created'
)
# wait for a PID-file to pop into existence.
test
-s
$pid_file
&&
i
=
''
&&
break
kill
-0
$2
||
break
# if the program goes away, stop waiting
;;
'removed'
)
# wait for this PID-file to disappear
test
!
-s
$pid_file
&&
i
=
''
&&
break
;;
*
)
echo
"wait_for_pid () usage: wait_for_pid created|removed"
echo
"wait_for_pid () usage: wait_for_pid created|removed
manager_pid
"
exit
1
;;
esac
# if manager isn't running, then pid-file will never be updated
if
test
-n
"
$manager_pid
"
;
then
if
kill
-0
"
$manager_pid
"
2>/dev/null
;
then
:
# the manager still runs
else
# The manager may have exited between the last pid-file check and now.
if
test
-n
"
$avoid_race_condition
"
;
then
avoid_race_condition
=
""
continue
# Check again.
fi
# there's nothing that will affect the file.
log_failure_msg
"Manager of pid-file quit without updating file."
return
1
# not waiting any more.
fi
fi
echo
$echo_n
".
$echo_c
"
i
=
`
expr
$i
+ 1
`
sleep
1
done
if
test
-z
"
$i
"
;
then
...
...
@@ -338,7 +361,7 @@ case "$mode" in
echo
$echo_n
"Shutting down MySQL"
kill
$mysqlmanager_pid
# mysqlmanager should remove the pid_file when it exits, so wait for it.
wait_for_pid removed
;
return_value
=
$?
wait_for_pid removed
"
$mysqlmanager_pid
"
;
return_value
=
$?
# delete lock for RedHat / SuSE
if
test
-f
$lock_dir
...
...
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