mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
c1113af15c
- WL#3158: IM: Instance configuration extensions; - WL#3159: IM: --bootstrap and --start-default-instance modes The following new statements have been added: - CREATE INSTANCE; - DROP INSTANCE; The behaviour of the following statements have been changed: - SET; - UNSET; - FLUSH INSTANCES; - SHOW INSTANCES; - SHOW INSTANCE OPTIONS;
42 lines
801 B
C
42 lines
801 B
C
#ifndef INCLUDES_MYSQL_INSTANCE_MANAGER_PORTABILITY_H
|
|
#define INCLUDES_MYSQL_INSTANCE_MANAGER_PORTABILITY_H
|
|
|
|
#if defined(_SCO_DS) && !defined(SHUT_RDWR)
|
|
#define SHUT_RDWR 2
|
|
#endif
|
|
|
|
#ifdef __WIN__
|
|
|
|
#define vsnprintf _vsnprintf
|
|
#define snprintf _snprintf
|
|
|
|
#define SIGKILL 9
|
|
#define SHUT_RDWR 0x2
|
|
|
|
/*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 */
|
|
|
|
|