MySQL 5.6.14 Source Code Document
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
MySQL 5.6.14 Source Code Document
replication of field metadata works.
ndbapi_simple.cpp
ndbapi_async.cpp
ndbapi_async1.cpp
ndbapi_retries.cpp
ndbapi_simple_index.cpp
ndbapi_scan.cpp
ndbapi_event.cpp
Adaptive Send Algorithm
MySQL Cluster Concepts
basic.cpp
common.hpp
br_test.cpp
ptr_binding_test.cpp
The Performance Schema main page
Performance schema: instrumentation interface page.
Performance schema: the aggregates page.
Todo List
Deprecated List
Modules
Namespaces
Classes
Files
File List
client
cmake
cmd-line-utils
dbug
extra
include
libevent
libmysql
libmysqld
libservices
mysql-test
mysys
array.c
base64.c
charset-def.c
charset.c
checksum.c
errors.c
hash.c
lf_alloc-pin.c
lf_dynarray.c
lf_hash.c
list.c
mf_arr_appstr.c
mf_cache.c
mf_dirname.c
mf_fn_ext.c
mf_format.c
mf_getdate.c
mf_iocache.c
mf_iocache2.c
mf_keycache.c
mf_keycaches.c
mf_loadpath.c
mf_pack.c
mf_path.c
mf_qsort.c
mf_qsort2.c
mf_radix.c
mf_same.c
mf_sort.c
mf_soundex.c
mf_tempdir.c
mf_tempfile.c
mf_unixpath.c
mf_wcomp.c
mulalloc.c
my_access.c
my_alarm.c
my_alloc.c
my_atomic.c
my_bit.c
my_bitmap.c
my_chsize.c
my_compare.c
my_compress.c
my_conio.c
my_copy.c
my_crc32.c
my_create.c
my_delete.c
my_div.c
my_error.c
my_file.c
my_fopen.c
my_fstream.c
my_gethwaddr.c
my_getncpus.c
my_getpagesize.c
my_getsystime.c
my_getwd.c
my_handler_errors.h
my_init.c
my_isnan.c
my_largepage.c
my_lib.c
my_libwrap.c
my_lock.c
my_lockmem.c
my_malloc.c
my_memmem.c
my_mess.c
my_mkdir.c
my_mmap.c
my_once.c
my_open.c
my_pread.c
my_pthread.c
my_quick.c
my_rdtsc.c
my_read.c
my_redel.c
my_rename.c
my_seek.c
my_sleep.c
my_static.c
my_static.h
my_symlink.c
my_symlink2.c
my_sync.c
my_thr_init.c
my_wincond.c
my_windac.c
my_winerr.c
my_winfile.c
my_winthread.c
my_write.c
mysys_priv.h
psi_noop.c
ptr_cmp.c
queues.c
stacktrace.c
string.c
test_charset.c
test_dir.c
test_xml.c
testhash.c
thr_alarm.c
thr_lock.c
thr_mutex.c
thr_rwlock.c
tree.c
typelib.c
waiting_threads.c
mysys_ssl
packaging
plugin
regex
scripts
sql
sql-common
storage
strings
support-files
tests
unittest
vio
zlib
File Members
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
my_mess.c
1
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
2
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
6
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
11
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
15
16
#include "mysys_priv.h"
17
18
void
my_message_stderr(uint error __attribute__((unused)),
19
const
char
*str, myf MyFlags)
20
{
21
DBUG_ENTER(
"my_message_stderr"
);
22
DBUG_PRINT(
"enter"
,(
"message: %s"
,str));
23
(void) fflush(stdout);
24
if
(MyFlags & ME_BELL)
25
(void) fputc(
'\007'
, stderr);
26
if
(my_progname)
27
{
28
(void)fputs(my_progname,stderr); (void)fputs(
": "
,stderr);
29
}
30
(void)fputs(str,stderr);
31
(void)fputc(
'\n'
,stderr);
32
(void)fflush(stderr);
33
DBUG_VOID_RETURN;
34
}
mysys
my_mess.c
Generated on Sat Nov 9 2013 01:25:09 for MySQL 5.6.14 Source Code Document by
1.8.1.2