#ifndef TPRINTF_H #define TPRINTF_H #include "built_in.h" #include "colors.h" extern void tprintf_init(void); extern void tprintf(char *msg, ...) __check_format_printf(1, 2); extern void tprintf_flush(void); extern void tprintf_cleanup(void); extern void tputchar_safe(int c); extern void tputs_safe(const char *str, size_t len); #define DEFAULT_TTY_SIZE 80 #endif /* TPRINTF_H */ emove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorPaul Moore <paul@paul-moore.com>2016-04-04 16:44:02 -0400
committerPaul Moore <paul@paul-moore.com>2016-04-04 16:44:02 -0400
commit7ffb8e317bae03b8ee5bdcec93dc3723be945e9b (patch)
treeb71bd2765fbfde1e39e37e2cba6e6849692341e1 /Documentation
parent0bf676d1fd5144e66ac06939fa3c7c12086c3b18 (diff)
audit: we don't need to __set_current_state(TASK_RUNNING)
Remove the calls to __set_current_state() to mark the task as running and do some related cleanup in wait_for_auditd() to limit the amount of work we do when we aren't going to reschedule the current task. Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'Documentation')