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
94276214
Commit
94276214
authored
Feb 20, 2001
by
tim@donna.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge donna.mysql.com:/home/my/bk/mysql
into donna.mysql.com:/home/tim/my/work
parents
96a86081
17174373
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
124 additions
and
9 deletions
+124
-9
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
acconfig.h
acconfig.h
+3
-0
acinclude.m4
acinclude.m4
+77
-0
configure.in
configure.in
+11
-0
innobase/include/os0file.h
innobase/include/os0file.h
+6
-0
innobase/os/os0sync.c
innobase/os/os0sync.c
+20
-7
sql/Makefile.am
sql/Makefile.am
+6
-2
No files found.
BitKeeper/etc/logging_ok
View file @
94276214
...
...
@@ -12,3 +12,4 @@ tfr@coyote.emotion.ee
tim@cane.mysql.fi
tim@threads.polyesthetic.msg
tim@work.mysql.com
tim@donna.mysql.com
acconfig.h
View file @
94276214
...
...
@@ -78,6 +78,9 @@
/* Define if int8, int16 and int32 types exist */
#undef HAVE_INT_8_16_32
/* Using Innobase DB */
#undef HAVE_INNOBASE_DB
/* Define if we have GNU readline */
#undef HAVE_LIBREADLINE
...
...
acinclude.m4
View file @
94276214
...
...
@@ -848,6 +848,83 @@ dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_BDB SECTION
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
dnl Macro: MYSQL_CHECK_INNOBASE
dnl Sets HAVE_INNOBASE_DB if --with-innobase-db is used
dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_INNOBASE], [
AC_ARG_WITH([innobase-db],
[\
--with-innobase-db Use Innobase DB],
[innobase="$withval"],
[innobase=no])
AC_MSG_CHECKING([for Innobase DB])
have_innobase_db=no
innobase_includes=
innobase_libs=
case "$innobase" in
yes )
AC_MSG_RESULT([Using Innobase DB])
AC_DEFINE(HAVE_INNOBASE_DB)
have_innobase_db="yes"
innobase_includes="-I../innobase/include"
dnl Some libs are listed several times, in order for gcc to sort out
dnl circular references.
innobase_libs="\
../innobase/usr/libusr.a\
../innobase/odbc/libodbc.a\
../innobase/srv/libsrv.a\
../innobase/que/libque.a\
../innobase/dict/libdict.a\
../innobase/ibuf/libibuf.a\
../innobase/row/librow.a\
../innobase/pars/libpars.a\
../innobase/btr/libbtr.a\
../innobase/trx/libtrx.a\
../innobase/read/libread.a\
../innobase/usr/libusr.a\
../innobase/buf/libbuf.a\
../innobase/ibuf/libibuf.a\
../innobase/eval/libeval.a\
../innobase/log/liblog.a\
../innobase/fsp/libfsp.a\
../innobase/fut/libfut.a\
../innobase/fil/libfil.a\
../innobase/lock/liblock.a\
../innobase/mtr/libmtr.a\
../innobase/page/libpage.a\
../innobase/rem/librem.a\
../innobase/thr/libthr.a\
../innobase/com/libcom.a\
../innobase/sync/libsync.a\
../innobase/data/libdata.a\
../innobase/mach/libmach.a\
../innobase/ha/libha.a\
../innobase/dyn/libdyn.a\
../innobase/mem/libmem.a\
../innobase/sync/libsync.a\
../innobase/ut/libut.a\
../innobase/os/libos.a\
../innobase/ut/libut.a"
AC_CHECK_LIB(rt, aio_read, [innobase_libs="$innobase_libs -lrt"])
;;
* )
AC_MSG_RESULT([Not using Innobase DB])
;;
esac
AC_SUBST(innobase_includes)
AC_SUBST(innobase_libs)
])
dnl ---------------------------------------------------------------------------
dnl END OF MYSQL_CHECK_INNOBASE SECTION
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
dnl Got this from the GNU tar 1.13.11 distribution
dnl by Paul Eggert <eggert@twinsun.com>
...
...
configure.in
View file @
94276214
...
...
@@ -1833,6 +1833,7 @@ AC_MSG_RESULT([default: $default_charset; compiled in: $CHARSETS])
MYSQL_CHECK_BDB
MYSQL_CHECK_INNOBASE
# If we have threads generate some library functions and test programs
...
...
@@ -1898,6 +1899,16 @@ mysql-noinstall-hack:' \
AC_DEFINE(HAVE_BERKELEY_DB)
fi
if test X"$have_innobase_db" = Xyes
then
sql_server_dirs="innobase $sql_server_dirs"
echo "CONFIGURING FOR INNOBASE DB"
(cd innobase && sh ./configure) \
|| AC_MSG_ERROR([could not configure Innobase DB])
echo "END OF INNOBASE DB CONFIGURATION"
fi
if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes"
then
# MIT user level threads
...
...
innobase/include/os0file.h
View file @
94276214
...
...
@@ -28,6 +28,12 @@ Created 10/21/1995 Heikki Tuuri
#define POSIX_ASYNC_IO
#endif
#ifndef S_IRWXU
#define S_IRWXU 00700
#define S_IRWXG 00070
#define S_IRWXO 00007
#endif
#endif
#ifdef __WIN__
...
...
innobase/os/os0sync.c
View file @
94276214
...
...
@@ -60,9 +60,9 @@ os_event_create(
event
=
ut_malloc
(
sizeof
(
struct
os_event_struct
));
os_fast_mutex_init
(
&
(
event
->
os_mutex
));
os_fast_mutex_init
(
&
(
event
->
wait_mutex
)
);
pthread_cond_init
(
&
(
event
->
cond_var
),
NULL
);
event
->
is_set
=
TRU
E
;
event
->
is_set
=
FALS
E
;
return
(
event
);
#endif
...
...
@@ -119,8 +119,8 @@ os_event_set(
if
(
event
->
is_set
)
{
/* Do nothing */
}
else
{
os_fast_mutex_unlock
(
&
(
event
->
wait_mutex
));
event
->
is_set
=
TRUE
;
pthread_cond_broadcast
(
&
(
event
->
cond_var
));
}
os_fast_mutex_unlock
(
&
(
event
->
os_mutex
));
...
...
@@ -148,7 +148,6 @@ os_event_reset(
if
(
!
event
->
is_set
)
{
/* Do nothing */
}
else
{
os_fast_mutex_lock
(
&
(
event
->
wait_mutex
));
event
->
is_set
=
FALSE
;
}
...
...
@@ -173,7 +172,7 @@ os_event_free(
ut_a
(
event
);
os_fast_mutex_free
(
&
(
event
->
os_mutex
));
os_fast_mutex_free
(
&
(
event
->
wait_mutex
));
pthread_cond_destroy
(
&
(
event
->
cond_var
));
ut_free
(
event
);
#endif
...
...
@@ -197,8 +196,22 @@ os_event_wait(
ut_a
(
err
==
WAIT_OBJECT_0
);
#else
os_fast_mutex_lock
(
&
(
event
->
wait_mutex
));
os_fast_mutex_unlock
(
&
(
event
->
wait_mutex
));
os_fast_mutex_lock
(
&
(
event
->
os_mutex
));
loop:
if
(
event
->
is_set
==
TRUE
)
{
os_fast_mutex_unlock
(
&
(
event
->
os_mutex
));
/* Ok, we may return */
return
;
}
pthread_cond_wait
(
&
(
event
->
cond_var
),
&
(
event
->
os_mutex
));
/* Solaris manual said that spurious wakeups may occur: we have
to check the 'is_set' variable again */
goto
loop
;
#endif
}
...
...
sql/Makefile.am
View file @
94276214
...
...
@@ -20,7 +20,9 @@
MYSQLDATAdir
=
$(localstatedir)
MYSQLSHAREdir
=
$(pkgdatadir)
MYSQLBASEdir
=
$(prefix)
INCLUDES
=
@MT_INCLUDES@ @bdb_includes@
-I
$(srcdir)
/../include
\
INCLUDES
=
@MT_INCLUDES@
\
@bdb_includes@ @innobase_includes@
\
-I
$(srcdir)
/../include
\
-I
$(srcdir)
/../regex
\
-I
$(srcdir)
-I
../include
-I
..
-I
.
WRAPLIBS
=
@WRAPLIBS@
...
...
@@ -37,7 +39,9 @@ LDADD = ../isam/libnisam.a \
../dbug/libdbug.a
\
../regex/libregex.a
\
../strings/libmystrings.a
mysqld_LDADD
=
@MYSQLD_EXTRA_LDFLAGS@ @bdb_libs@
$(LDADD)
$(CXXLDFLAGS)
$(WRAPLIBS)
mysqld_LDADD
=
@MYSQLD_EXTRA_LDFLAGS@
\
@bdb_libs@ @innobase_libs@
\
$(LDADD)
$(CXXLDFLAGS)
$(WRAPLIBS)
noinst_HEADERS
=
item.h item_func.h item_sum.h item_cmpfunc.h
\
item_strfunc.h item_timefunc.h item_uniq.h
\
item_create.h mysql_priv.h
\
...
...
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