fix: DEBUG_VSTREE error
caused by #define DEBUG - Util util by zengli
This commit is contained in:
parent
e9d11f627a
commit
2c5ef57fe4
|
@ -7,9 +7,9 @@ int
|
|||
main(int argc, char * argv[])
|
||||
{
|
||||
//chdir(dirname(argv[0]));
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
cout << "argc: " << argc << "\t";
|
||||
cout << "DB_store:" << argv[1] << "\t";
|
||||
|
|
|
@ -17,9 +17,9 @@ int
|
|||
main(int argc, char * argv[])
|
||||
{
|
||||
//chdir(dirname(argv[0]));
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
if(argc < 3) //./gbuild
|
||||
{
|
||||
//output help info here
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
int main(int argc, char * argv[])
|
||||
{
|
||||
//chdir(dirname(argv[0]));
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
std::string ip = Socket::DEFAULT_SERVER_IP;
|
||||
unsigned short port = Socket::DEFAULT_CONNECT_PORT;
|
||||
|
@ -38,4 +38,4 @@ int main(int argc, char * argv[])
|
|||
client.run();
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -122,9 +122,9 @@ main(int argc, char **argv)
|
|||
//NOTICE:this is needed to ensure the file path is the work path
|
||||
//chdir(dirname(argv[0]));
|
||||
//NOTICE:this is needed to set several debug files
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
db_home = Util::global_config["db_home"];
|
||||
|
||||
|
|
|
@ -38,9 +38,9 @@ int
|
|||
main(int argc, char * argv[])
|
||||
{
|
||||
//chdir(dirname(argv[0]));
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
if (argc == 1 || strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0)
|
||||
{
|
||||
|
|
|
@ -22,9 +22,9 @@ bool stopServer();
|
|||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
string mode;
|
||||
if (argc == 1) {
|
||||
|
|
|
@ -12,9 +12,9 @@ int
|
|||
main(int argc, char * argv[])
|
||||
{
|
||||
//chdir(dirname(argv[0]));
|
||||
#ifdef DEBUG
|
||||
//#ifdef DEBUG
|
||||
Util util;
|
||||
#endif
|
||||
//#endif
|
||||
|
||||
cout << "argc: " << argc << "\t";
|
||||
cout << "DB_store:" << argv[1] << "\t";
|
||||
|
|
|
@ -87,7 +87,7 @@ in the sparql query can point to the same node in data graph)
|
|||
//#define DEBUG_STREAM
|
||||
//#define DEBUG_PRECISE 1 all information
|
||||
//#define DEBUG_KVSTORE 1 //in KVstore
|
||||
#define DEBUG_VSTREE 1 //in Database
|
||||
//#define DEBUG_VSTREE 1 //in Database
|
||||
//#define DEBUG_LRUCACHE 1
|
||||
//#define DEBUG_DATABASE 1 //in Database
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue