changed initialize to osrfAppInitialize and childInit to osrfAppChildInit
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 7 Sep 2005 14:03:20 +0000 (14:03 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 7 Sep 2005 14:03:20 +0000 (14:03 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@532 9efc2488-bf62-4759-914b-345cdb29e865

src/c-apps/osrf_dbmath.c
src/c-apps/osrf_math.c
src/libstack/osrf_application.c

index a792245..92ce665 100644 (file)
@@ -2,12 +2,12 @@
 #include "opensrf/osrf_application.h"
 #include "objson/object.h"
 
-int initialize();
-int childInit();
+int osrfAppInitialize();
+int osrfAppChildInit();
 int osrfMathRun( osrfMethodContext* );
 
 
-int initialize() {
+int osrfAppInitialize() {
        osrfAppRegisterMethod( "opensrf.dbmath", "add", "osrfMathRun", "send 2 numbers and I'll add them", 2 );
        osrfAppRegisterMethod( "opensrf.dbmath", "sub", "osrfMathRun", "send 2 numbers and I'll divide them", 2 );
        osrfAppRegisterMethod( "opensrf.dbmath", "mult", "osrfMathRun", "send 2 numbers and I'll multiply them", 2 );
@@ -15,7 +15,7 @@ int initialize() {
        return 0;
 }
 
-int childInit() {
+int osrfAppChildInit() {
        return 0;
 }
 
index c727c25..b074f17 100644 (file)
@@ -2,12 +2,12 @@
 #include "opensrf/osrf_application.h"
 #include "objson/object.h"
 
-int initialize();
-int childInit();
+int osrfAppInitialize();
+int osrfAppChildInit();
 int osrfMathRun( osrfMethodContext* );
 
 
-int initialize() {
+int osrfAppInitialize() {
 
        /* tell the server about the methods we handle */
        osrfAppRegisterMethod( "opensrf.math", "add", "osrfMathRun", "send 2 numbers and I'll add them", 2 );
@@ -17,7 +17,7 @@ int initialize() {
        return 0;
 }
 
-int childInit() {
+int osrfAppChildInit() {
        return 0;
 }
 
index c3d7485..cb2c16e 100644 (file)
@@ -29,10 +29,10 @@ int osrfAppRegisterApplication( char* appName, char* soFile ) {
 
        /* see if we can run the initialize method */
        int (*init) (void);
-       *(void **) (&init) = dlsym(app->handle, "initialize");
+       *(void **) (&init) = dlsym(app->handle, "osrfAppInitialize");
 
        if( (error = dlerror()) != NULL ) {
-               warning_handler("! Unable to locate method symbol [initialize] for app %s: %s", appName, error );
+               warning_handler("! Unable to locate method symbol [osrfAppInitialize] for app %s: %s", appName, error );
 
        } else {
 
@@ -40,7 +40,7 @@ int osrfAppRegisterApplication( char* appName, char* soFile ) {
                int ret;
                if( (ret = (*init)()) ) {
                        warning_handler("Application %s returned non-zero value from "
-                                       "'initialize', not registering...", appName );
+                                       "'osrfAppInitialize', not registering...", appName );
                        //free(app->name); /* need a method to remove an application from the list */
                        //free(app);
                        return ret;