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
26f249f6
Commit
26f249f6
authored
Jul 23, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation failures on Windows
parent
0ae8bae9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
include/mysql/psi/mysql_socket.h
include/mysql/psi/mysql_socket.h
+4
-0
sql/wsrep_xid.h
sql/wsrep_xid.h
+3
-2
No files found.
include/mysql/psi/mysql_socket.h
View file @
26f249f6
...
...
@@ -1033,11 +1033,13 @@ inline_mysql_socket_accept
SOCK_CLOEXEC
);
#else
socket_accept
.
fd
=
accept
(
socket_listen
.
fd
,
addr
,
&
addr_length
);
#ifdef FD_CLOEXEC
flags
=
fcntl
(
socket_accept
.
fd
,
F_GETFD
);
if
(
flags
!=
-
1
)
{
flags
|=
FD_CLOEXEC
;
fcntl
(
socket_accept
.
fd
,
F_SETFD
,
flags
);
}
#endif
#endif
/* Instrumentation end */
...
...
@@ -1053,11 +1055,13 @@ inline_mysql_socket_accept
SOCK_CLOEXEC
);
#else
socket_accept
.
fd
=
accept
(
socket_listen
.
fd
,
addr
,
&
addr_length
);
#ifdef FD_CLOEXEC
flags
=
fcntl
(
socket_accept
.
fd
,
F_GETFD
);
if
(
flags
!=
-
1
)
{
flags
|=
FD_CLOEXEC
;
fcntl
(
socket_accept
.
fd
,
F_SETFD
,
flags
);
}
#endif
#endif
}
...
...
sql/wsrep_xid.h
View file @
26f249f6
...
...
@@ -17,11 +17,12 @@
#define WSREP_XID_H
#include <my_config.h>
#include "../wsrep/wsrep_api.h"
#include "handler.h" // XID typedef
#ifdef WITH_WSREP
#include "../wsrep/wsrep_api.h"
#include "handler.h" // XID typedef
void
wsrep_xid_init
(
xid_t
*
,
const
wsrep_uuid_t
&
,
wsrep_seqno_t
);
const
wsrep_uuid_t
*
wsrep_xid_uuid
(
const
XID
&
);
wsrep_seqno_t
wsrep_xid_seqno
(
const
XID
&
);
...
...
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