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
b5517223
Commit
b5517223
authored
May 19, 2006
by
anozdrin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation problems on Windows and SUN Solaris.
parent
40f93400
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
19 additions
and
19 deletions
+19
-19
include/m_string.h
include/m_string.h
+9
-3
server-tools/instance-manager/IMService.cpp
server-tools/instance-manager/IMService.cpp
+3
-4
server-tools/instance-manager/Makefile.am
server-tools/instance-manager/Makefile.am
+0
-3
server-tools/instance-manager/commands.cc
server-tools/instance-manager/commands.cc
+0
-1
server-tools/instance-manager/commands.h
server-tools/instance-manager/commands.h
+1
-1
server-tools/instance-manager/instance_map.cc
server-tools/instance-manager/instance_map.cc
+1
-2
server-tools/instance-manager/instance_map.h
server-tools/instance-manager/instance_map.h
+1
-2
server-tools/instance-manager/instance_options.h
server-tools/instance-manager/instance_options.h
+1
-0
server-tools/instance-manager/mysqlmanager.cc
server-tools/instance-manager/mysqlmanager.cc
+2
-1
server-tools/instance-manager/user_management_commands.cc
server-tools/instance-manager/user_management_commands.cc
+0
-2
server-tools/instance-manager/user_map.cc
server-tools/instance-manager/user_map.cc
+1
-0
No files found.
include/m_string.h
View file @
b5517223
...
...
@@ -247,13 +247,19 @@ extern int my_snprintf(char* to, size_t n, const char* fmt, ...);
}
#endif
/* LEX_STRING */
/*
LEX_STRING -- a pair of a C-string and its length.
NOTE: this exactly form of declaration is required for some C-compilers
(for one, Sun C 5.7 2005/01/07). Unfortunatelt with such declaration
LEX_STRING can not be forward declared.
*/
typedef
struct
LEX_STRING
typedef
struct
{
char
*
str
;
uint
length
;
};
}
LEX_STRING
;
#define STRING_WITH_LEN(X) (X), ((uint) (sizeof(X) - 1))
#define C_STRING_WITH_SIZE(X) ((char *) (X)), ((uint) (sizeof(X) - 1))
...
...
server-tools/instance-manager/IMService.cpp
View file @
b5517223
...
...
@@ -30,15 +30,14 @@ void IMService::Run(DWORD argc, LPTSTR *argv)
// report to the SCM that we're about to start
ReportStatus
((
DWORD
)
SERVICE_START_PENDING
);
Options
o
;
o
.
load
(
argc
,
argv
);
Options
::
load
(
argc
,
argv
);
// init goes here
ReportStatus
((
DWORD
)
SERVICE_RUNNING
);
// wait for main loop to terminate
manager
(
o
);
o
.
cleanup
();
manager
();
Options
::
cleanup
();
}
void
IMService
::
Log
(
const
char
*
msg
)
...
...
server-tools/instance-manager/Makefile.am
View file @
b5517223
...
...
@@ -93,9 +93,6 @@ mysqlmanager_LDADD= @CLIENT_EXTRA_LDFLAGS@ \
EXTRA_DIST
=
WindowsService.cpp WindowsService.h IMService.cpp
\
IMService.h cmakelists.txt
AM_CFLAGS
=
-Werror
AM_CXXFLAGS
=
-Werror
tags
:
ctags
-R
*
.h
*
.cc
...
...
server-tools/instance-manager/commands.cc
View file @
b5517223
...
...
@@ -21,7 +21,6 @@
#include "commands.h"
#include <my_global.h>
#include <m_string.h>
#include <m_ctype.h>
#include <mysql.h>
#include <my_dir.h>
...
...
server-tools/instance-manager/commands.h
View file @
b5517223
...
...
@@ -18,6 +18,7 @@
#include <my_global.h>
#include <my_sys.h>
#include <m_string.h>
#include <hash.h>
#include "command.h"
...
...
@@ -28,7 +29,6 @@
#pragma interface
#endif
struct
LEX_STRING
;
/*
Print all instances of this instance manager.
...
...
server-tools/instance-manager/instance_map.cc
View file @
b5517223
...
...
@@ -23,7 +23,6 @@
#include <my_global.h>
#include <m_ctype.h>
#include <mysql_com.h>
#include <m_string.h>
#include "buffer.h"
#include "guardian.h"
...
...
@@ -117,7 +116,7 @@ static void parse_option(const char *option_str,
char
*
option_name_buf
,
char
*
option_value_buf
)
{
char
*
eq_pos
;
c
onst
c
har
*
eq_pos
;
const
char
*
ptr
=
option_str
;
while
(
*
ptr
==
'-'
)
...
...
server-tools/instance-manager/instance_map.h
View file @
b5517223
...
...
@@ -18,14 +18,13 @@
#include <my_global.h>
#include <my_sys.h>
#include <m_string.h>
#include <hash.h>
#if defined(__GNUC__) && defined(USE_PRAGMA_INTERFACE)
#pragma interface
#endif
struct
LEX_STRING
;
class
Guardian_thread
;
class
Instance
;
class
Named_value_arr
;
...
...
server-tools/instance-manager/instance_options.h
View file @
b5517223
...
...
@@ -20,6 +20,7 @@
#include <my_sys.h>
#include "parse.h"
#include "portability.h"
/* for pid_t on Win32 */
#if defined(__GNUC__) && defined(USE_PRAGMA_INTERFACE)
#pragma interface
...
...
server-tools/instance-manager/mysqlmanager.cc
View file @
b5517223
...
...
@@ -34,7 +34,8 @@
#include "user_management_commands.h"
#ifdef __WIN__
#include "windowsservice.h"
#include "IMService.h"
#include "WindowsService.h"
#endif
...
...
server-tools/instance-manager/user_management_commands.cc
View file @
b5517223
...
...
@@ -216,7 +216,6 @@ int Add_user_cmd::execute()
{
LEX_STRING
user_name
;
const
char
*
password
;
char
scrambled_password_buf
[
SCRAMBLED_PASSWORD_CHAR_LENGTH
+
1
];
User_map
user_map
;
User
*
new_user
;
...
...
@@ -310,7 +309,6 @@ int Edit_user_cmd::execute()
{
LEX_STRING
user_name
;
const
char
*
password
;
char
scrambled_password_buf
[
SCRAMBLED_PASSWORD_CHAR_LENGTH
+
1
];
User_map
user_map
;
User
*
user
;
...
...
server-tools/instance-manager/user_map.cc
View file @
b5517223
...
...
@@ -21,6 +21,7 @@
#include "user_map.h"
#include "exit_codes.h"
#include "log.h"
#include "portability.h"
User
::
User
(
const
LEX_STRING
*
user_name_arg
,
const
char
*
password
)
{
...
...
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