diff options
author | unknown <tomas@poseidon.(none)> | 2004-09-02 12:04:50 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-09-02 12:04:50 +0000 |
commit | 3b124d4fb2afb55d4aacf97245a3d2c523a73bab (patch) | |
tree | e7a0aa97a330c051962779f1d940e84d29c4ce4a /ndb/include/mgmcommon/ConfigRetriever.hpp | |
parent | 59e2b96438eb1197f3f8b9128cd53a7c5582be4a (diff) | |
download | mariadb-git-3b124d4fb2afb55d4aacf97245a3d2c523a73bab.tar.gz |
added connect thread to Ndb_cluster_connection +
some other small fixes
ndb/include/mgmcommon/ConfigRetriever.hpp:
added options to do_connect to contol how connects failures should be treated
ndb/include/mgmcommon/NdbConfig.h:
method to retrieve datadir path (to user for chdir)
ndb/include/ndbapi/ndb_cluster_connection.hpp:
Added connect thread
ndb/src/common/mgmcommon/ConfigRetriever.cpp:
added options to do_connect to contol how connects failures should be treated
ndb/src/common/mgmcommon/NdbConfig.c:
method to retrieve datadir path (to user for chdir)
ndb/src/kernel/main.cpp:
ndbd to do chdir
ndb/src/kernel/vm/WatchDog.cpp:
added my_thread_init for debug
ndb/src/ndbapi/ClusterMgr.cpp:
added my_thread_init for debug
ndb/src/ndbapi/TransporterFacade.cpp:
removed call to atexit
ndb/src/ndbapi/ndb_cluster_connection.cpp:
added connect thread
Diffstat (limited to 'ndb/include/mgmcommon/ConfigRetriever.hpp')
-rw-r--r-- | ndb/include/mgmcommon/ConfigRetriever.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/include/mgmcommon/ConfigRetriever.hpp b/ndb/include/mgmcommon/ConfigRetriever.hpp index dd34eb0cfbb..00f5ef71160 100644 --- a/ndb/include/mgmcommon/ConfigRetriever.hpp +++ b/ndb/include/mgmcommon/ConfigRetriever.hpp @@ -37,7 +37,7 @@ public: */ int init(); - int do_connect(); + int do_connect(int exit_on_connect_failure= false); /** * Get configuration for current (nodeId given in local config file) node. |