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
33dcccb5
Commit
33dcccb5
authored
May 28, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fix for HPUX
parent
47cc3af0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
configure.in
configure.in
+3
-0
innobase/os/os0file.c
innobase/os/os0file.c
+2
-2
No files found.
configure.in
View file @
33dcccb5
...
...
@@ -2484,6 +2484,9 @@ AC_SUBST(netware_dir)
AC_SUBST
(
linked_netware_sources
)
AM_CONDITIONAL
(
HAVE_NETWARE,
test
"
$netware_dir
"
=
"netware"
)
# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS
export
CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR
if
test
"
$with_server
"
=
"yes"
-o
"
$THREAD_SAFE_CLIENT
"
!=
"no"
then
AC_DEFINE
(
THREAD
)
...
...
innobase/os/os0file.c
View file @
33dcccb5
...
...
@@ -1111,7 +1111,7 @@ os_file_pread(
os_n_file_reads
++
;
#if
def HAVE_PREAD
#if
defined(HAVE_PREAD) && !defined(HAVE_BROKEN_PREAD)
os_mutex_enter
(
os_file_count_mutex
);
os_file_n_pending_preads
++
;
os_mutex_exit
(
os_file_count_mutex
);
...
...
@@ -1186,7 +1186,7 @@ os_file_pwrite(
os_n_file_writes
++
;
#if
def HAVE_PWRITE
#if
defined(HAVE_PWRITE) && !defined(HAVE_BROKEN_PREAD)
os_mutex_enter
(
os_file_count_mutex
);
os_file_n_pending_pwrites
++
;
os_mutex_exit
(
os_file_count_mutex
);
...
...
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