~vorlon/ubuntu/raring/upstart/lp.1199778

« back to all changes in this revision

Viewing changes to init/log.h

  • Committer: Stéphane Graber
  • Date: 2013-03-07 18:43:01 UTC
  • mfrom: (1182.56.54 upstart)
  • Revision ID: stgraber@ubuntu.com-20130307184301-dlmb1c5bwonqagkw
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
Log  *log_new                (const void *parent, const char *path,
80
80
                              int fd, uid_t uid)
81
 
        __attribute__ ((warn_unused_result, malloc));
 
81
        __attribute__ ((warn_unused_result));
82
82
void  log_io_reader          (Log *log, NihIo *io, const char *buf, size_t len);
83
83
void  log_io_error_handler   (Log *log, NihIo *io);
84
84
int   log_destroy            (Log *log)
89
89
        __attribute__ ((warn_unused_result));
90
90
void  log_unflushed_init     (void);
91
91
json_object * log_serialise (Log *log)
92
 
        __attribute__ ((warn_unused_result, malloc));
 
92
        __attribute__ ((warn_unused_result));
93
93
Log * log_deserialise (const void *parent, json_object *json)
94
 
        __attribute__ ((warn_unused_result, malloc));
 
94
        __attribute__ ((warn_unused_result));
95
95
 
96
96
NIH_END_EXTERN
97
97