~ci-train-bot/lightdm/lightdm-ubuntu-zesty-1679

« back to all changes in this revision

Viewing changes to src/process.h

  • Committer: Alexandros Frantzis
  • Date: 2015-10-20 07:50:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2226.
  • Revision ID: alexandros.frantzis@canonical.com-20151020075044-z7j5yga34lz16t29
Use logrotate to handle files in the default log directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
#include <glib-object.h>
16
16
 
 
17
#include "log-mode.h"
 
18
 
17
19
G_BEGIN_DECLS
18
20
 
19
21
#define PROCESS_TYPE (process_get_type())
49
51
 
50
52
Process *process_new (ProcessRunFunc run_func, gpointer run_func_data);
51
53
 
52
 
void process_set_log_file (Process *process, const gchar *path, gboolean log_stdout);
 
54
void process_set_log_file (Process *process, const gchar *path, gboolean log_stdout, LogMode log_mode);
53
55
 
54
56
void process_set_clear_environment (Process *process, gboolean clear_environment);
55
57