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
7052246f
Commit
7052246f
authored
Oct 23, 2009
by
Sergey Glukhov
Browse files
Options
Browse Files
Download
Plain Diff
automerge
parents
795102b7
c2552ec3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
sql/mysqld.cc
sql/mysqld.cc
+1
-1
storage/archive/Makefile.am
storage/archive/Makefile.am
+14
-1
No files found.
sql/mysqld.cc
View file @
7052246f
...
...
@@ -1001,7 +1001,7 @@ static void close_connections(void)
if
(
tmp
->
vio_ok
())
{
if
(
global_system_variables
.
log_warnings
)
sql_print_warning
(
ER
(
ER_FORCING_CLOSE
),
my_progname
,
sql_print_warning
(
ER
_DEFAULT
(
ER_FORCING_CLOSE
),
my_progname
,
tmp
->
thread_id
,
(
tmp
->
main_security_ctx
.
user
?
tmp
->
main_security_ctx
.
user
:
""
));
...
...
storage/archive/Makefile.am
View file @
7052246f
# Copyright (C) 2005-2006 MySQL AB
# Copyright (C) 2009 SUN Microsystems
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
...
...
@@ -68,14 +69,23 @@ archive_reader_LDFLAGS = @NOINST_LDFLAGS@
EXTRA_DIST
=
CMakeLists.txt plug.in
if
HAVE_DTRACE_DASH_G
# The object for static and dynamic linking of archive differ
# For static linkage of archive to mysqld
libarchive_a_LIBADD
=
probes_mysql.o
libarchive_a_DEPENDENCIES
=
probes_mysql.o dtrace_files dtrace_providers
CLEANFILES
=
probes_mysql.o dtrace_files dtrace_providers
# For archive as shared library
ha_archive_la_LIBADD
=
probes_sh_mysql.o
ha_archive_la_DEPENDENCIES
=
probes_sh_mysql.o dtrace_shared_files dtrace_providers
CLEANFILES
=
$(DTRACEPROVIDER)
dtrace_files dtrace_providers dtrace_shared_files
DTRACEFILES
=
libarchive_a-ha_archive.o
DTRACESHAREDFILES
=
.libs/ha_archive_la-ha_archive.o
DTRACEPROVIDER
=
probes_mysql.d
dtrace_files
:
echo
$(DTRACEFILES)
>
$@
dtrace_shared_files
:
echo
$(DTRACESHAREDFILES)
>
$@
dtrace_providers
:
probes_mysql.d
echo
$(DTRACEPROVIDER)
>
$@
probes_mysql.d
:
...
...
@@ -83,6 +93,9 @@ probes_mysql.d:
$(CP)
$(top_srcdir)
/include/probes_mysql.d.base probes_mysql.d
echo
timestamp
>
dtrace_sources
probes_sh_mysql.o
:
$(DTRACEPROVIDER) $(DTRACESHAREDFILES)
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACESHAREDFILES)
-o
$@
probes_mysql.o
:
$(DTRACEPROVIDER) $(DTRACEFILES)
$(DTRACE)
$(DTRACEFLAGS)
-G
-s
$(DTRACEPROVIDER)
$(DTRACEFILES)
-o
$@
endif
...
...
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