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
eebe4fb8
Commit
eebe4fb8
authored
Mar 17, 2006
by
cmiller@calliope.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into calliope.local:/Volumes/Source/src/mysql-5.0__bug15846
parents
a37fa18a
34638c28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
8 deletions
+14
-8
vio/viosocket.c
vio/viosocket.c
+14
-8
No files found.
vio/viosocket.c
View file @
eebe4fb8
...
...
@@ -560,14 +560,20 @@ int vio_close_shared_memory(Vio * vio)
Close all handlers. UnmapViewOfFile and CloseHandle return non-zero
result if they are success.
*/
r
=
UnmapViewOfFile
(
vio
->
handle_map
)
||
CloseHandle
(
vio
->
event_server_wrote
)
||
CloseHandle
(
vio
->
event_server_read
)
||
CloseHandle
(
vio
->
event_client_wrote
)
||
CloseHandle
(
vio
->
event_client_read
)
||
CloseHandle
(
vio
->
handle_file_map
);
if
(
!
r
)
{
DBUG_PRINT
(
"vio_error"
,
(
"close() failed, error: %d"
,
r
));
/* FIXME: error handling (not critical for MySQL) */
}
if
(
UnmapViewOfFile
(
vio
->
handle_map
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"UnmapViewOfFile() failed"
));
if
(
CloseHandle
(
vio
->
event_server_wrote
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->esw) failed"
));
if
(
CloseHandle
(
vio
->
event_server_read
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->esr) failed"
));
if
(
CloseHandle
(
vio
->
event_client_wrote
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->ecw) failed"
));
if
(
CloseHandle
(
vio
->
event_client_read
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->ecr) failed"
));
if
(
CloseHandle
(
vio
->
handle_file_map
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->hfm) failed"
));
if
(
CloseHandle
(
vio
->
event_conn_closed
)
==
0
)
DBUG_PRINT
(
"vio_error"
,
(
"CloseHandle(vio->ecc) failed"
));
}
vio
->
type
=
VIO_CLOSED
;
vio
->
sd
=
-
1
;
...
...
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