diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-05-29 20:12:21 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-05-29 20:12:21 +0900 |
commit | 5d91a5ffe0bc614ee79a18818dadf5836ce038d7 (patch) | |
tree | f084f8bdf6b34b006c3c420915e2b372ae485454 /src | |
parent | 2f79d6f7733993d4eb5e9bdaf29add9d303f18c5 (diff) |
Set timeout as 10sec
It is because very heavy application takes more than 1 sec
Change-Id: Ia56d6a8d2fd0316d70ab76f53ab4b4f5941d5562
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src')
-rw-r--r-- | src/app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.cpp b/src/app.cpp index 58fc036..336a986 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -46,7 +46,7 @@ extern "C" namespace wm { -const unsigned TIME_OUT = 1000000UL; /* 1s */ +const unsigned TIME_OUT = 10000000UL; /* 10s */ /* DrawingArea name used by "{layout}.{area}" */ const char kNameLayoutNormal[] = "normal"; |