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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
78c06420
Commit
78c06420
authored
Apr 07, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
consistency in declaring service symbols
parent
daac5b51
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
libservices/HOWTO
libservices/HOWTO
+1
-1
libservices/debug_sync_service.c
libservices/debug_sync_service.c
+1
-1
libservices/progress_report_service.c
libservices/progress_report_service.c
+1
-1
libservices/thd_alloc_service.c
libservices/thd_alloc_service.c
+1
-1
libservices/thd_wait_service.c
libservices/thd_wait_service.c
+1
-1
No files found.
libservices/HOWTO
View file @
78c06420
...
...
@@ -76,7 +76,7 @@ it should also declare all the accompanying data structures, as necessary
==================================================================
/* GPL header */
#include <service_versions.h>
SERVICE_VERSION
*
foo_service= (void*)VERSION_foo;
SERVICE_VERSION foo_service= (void*)VERSION_foo;
==================================================================
7. add the new file to libservices/CMakeLists.txt (MYSQLSERVICES_SOURCES)
...
...
libservices/debug_sync_service.c
View file @
78c06420
...
...
@@ -15,4 +15,4 @@
*/
#include <service_versions.h>
SERVICE_VERSION
*
debug_sync_service
=
(
void
*
)
VERSION_debug_sync
;
SERVICE_VERSION
debug_sync_service
=
(
void
*
)
VERSION_debug_sync
;
libservices/progress_report_service.c
View file @
78c06420
...
...
@@ -14,4 +14,4 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <service_versions.h>
SERVICE_VERSION
*
progress_report_service
=
(
void
*
)
VERSION_progress_report
;
SERVICE_VERSION
progress_report_service
=
(
void
*
)
VERSION_progress_report
;
libservices/thd_alloc_service.c
View file @
78c06420
...
...
@@ -15,4 +15,4 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <service_versions.h>
SERVICE_VERSION
*
thd_alloc_service
=
(
void
*
)
VERSION_thd_alloc
;
SERVICE_VERSION
thd_alloc_service
=
(
void
*
)
VERSION_thd_alloc
;
libservices/thd_wait_service.c
View file @
78c06420
...
...
@@ -16,4 +16,4 @@
*/
#include <service_versions.h>
SERVICE_VERSION
*
thd_wait_service
=
(
void
*
)
VERSION_thd_wait
;
SERVICE_VERSION
thd_wait_service
=
(
void
*
)
VERSION_thd_wait
;
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