void ms_check_cpu_memory(void)
{
int used_pss, memory_threshold, cpu_usage, cpu_threshold;
+#ifndef MUSE_LITE
char err_msg[MUSE_MSG_LEN_MAX] = {'\0',};
+#endif
ms_connection_t *connection = NULL;
ms_system_t *system = NULL;
LOGW("[%d] Proportional set size %d ( > %d ? ) KB (CPU %d %%)", muse_server->pid, used_pss, memory_threshold, cpu_usage);
+#ifndef MUSE_LITE
if (used_pss >= memory_threshold) {
ms_log_process_info(muse_server->pid);
if (cpu_usage > cpu_threshold)
ms_system_stat_attach(system);
+#endif
muse_core_remove_all_fd_table();
} else {