commit | 0480bc89816c97cb48db5662a6277f85266ec7d4 | [log] [tgz] |
---|---|---|
author | Austin Schuh <austin@peloton-tech.com> | Sat Oct 25 18:01:51 2014 -0700 |
committer | Austin Schuh <austin@peloton-tech.com> | Sat Oct 25 22:25:08 2014 -0700 |
tree | 7e8d23ed1fa74e190ec746765dc351213dfd4570 | |
parent | 374fd17acc224846ccb9d7ecdd10be10a11b95c1 [diff] [blame] |
Shrunk shmem and logging queue size. Change-Id: I84828ca3c87991dc041106e73eed6d7260849733
diff --git a/aos/linux_code/logging/linux_logging.cc b/aos/linux_code/logging/linux_logging.cc index 2bd5bce..f4534ae 100644 --- a/aos/linux_code/logging/linux_logging.cc +++ b/aos/linux_code/logging/linux_logging.cc
@@ -69,7 +69,7 @@ void Register() { Init(); - queue = RawQueue::Fetch("LoggingQueue", sizeof(LogMessage), 1323, 80000); + queue = RawQueue::Fetch("LoggingQueue", sizeof(LogMessage), 1323, 40000); if (queue == NULL) { Die("logging: couldn't fetch queue\n"); }