1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-12 11:01:17 +03:00
This commit is contained in:
David Hill
2018-09-21 10:40:05 -05:00
parent 455776ed49
commit 4e6e5647ef
11 changed files with 62 additions and 37 deletions

View File

@@ -19,6 +19,7 @@
#include "serverMonitor.h"
#include "crashtrace.h"
#include "installdir.h"
using namespace std;
using namespace servermonitor;
@@ -27,6 +28,8 @@ using namespace logging;
extern int swapFlag;
string tmpDir;
/*****************************************************************************
* @brief main
*
@@ -39,6 +42,11 @@ int main (int argc, char** argv)
{
ServerMonitor serverMonitor;
Oam oam;
string TempFileDir;
oam.getSystemConfig("TempFileDir", TempFileDir);
tmpDir = startup::StartUp::tmpDir() + TempFileDir;
struct sigaction ign;