mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
430d215c58
into mysql.com:/home/my/mysql-5.1
45 lines
915 B
C
45 lines
915 B
C
#ifndef INCLUDES_MYSQL_INSTANCE_MANAGER_PORTABILITY_H
|
|
#define INCLUDES_MYSQL_INSTANCE_MANAGER_PORTABILITY_H
|
|
|
|
#if (defined(_SCO_DS) || defined(UNIXWARE_7)) && !defined(SHUT_RDWR)
|
|
/*
|
|
SHUT_* functions are defined only if
|
|
"(defined(_XOPEN_SOURCE) && _XOPEN_SOURCE_EXTENDED - 0 >= 1)"
|
|
*/
|
|
#define SHUT_RDWR 2
|
|
#endif
|
|
|
|
#ifdef __WIN__
|
|
|
|
#define vsnprintf _vsnprintf
|
|
#define snprintf _snprintf
|
|
|
|
#define SIGKILL 9
|
|
|
|
/*TODO: fix this */
|
|
#define PROTOCOL_VERSION 10
|
|
|
|
#define DFLT_CONFIG_FILE_NAME "my.ini"
|
|
#define DFLT_MYSQLD_PATH "mysqld"
|
|
#define DFLT_PASSWD_FILE_EXT ".passwd"
|
|
#define DFLT_PID_FILE_EXT ".pid"
|
|
#define DFLT_SOCKET_FILE_EXT ".sock"
|
|
|
|
typedef int pid_t;
|
|
|
|
#undef popen
|
|
#define popen(A,B) _popen(A,B)
|
|
|
|
#define NEWLINE "\r\n"
|
|
#define NEWLINE_LEN 2
|
|
|
|
#else /* ! __WIN__ */
|
|
|
|
#define NEWLINE "\n"
|
|
#define NEWLINE_LEN 1
|
|
|
|
#endif /* __WIN__ */
|
|
|
|
#endif /* INCLUDES_MYSQL_INSTANCE_MANAGER_PORTABILITY_H */
|
|
|
|
|