Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324480
b: refs/heads/master
c: adb9136
h: refs/heads/master
v: v3
  • Loading branch information
Cruz Julian Bishop authored and Greg Kroah-Hartman committed Aug 14, 2012
1 parent ea7ca3e commit 5531d51
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2258937b2137214bae796ec929394a282f531ed7
refs/heads/master: adb913658f5cecc02dd8f36aa9edecb3e9fd3399
24 changes: 17 additions & 7 deletions trunk/drivers/staging/android/logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,24 @@
#include <linux/types.h>
#include <linux/ioctl.h>

/**
* struct logger_entry - defines a single entry that is given to a logger
* @len: The length of the payload
* @__pad: Two bytes of padding that appear to be required
* @pid: The generating process' process ID
* @tid: The generating process' thread ID
* @sec: The number of seconds that have elapsed since the Epoch
* @nsec: The number of nanoseconds that have elapsed since @sec
* @msg: The message that is to be logged
*/
struct logger_entry {
__u16 len; /* length of the payload */
__u16 __pad; /* no matter what, we get 2 bytes of padding */
__s32 pid; /* generating process's pid */
__s32 tid; /* generating process's tid */
__s32 sec; /* seconds since Epoch */
__s32 nsec; /* nanoseconds */
char msg[0]; /* the entry's payload */
__u16 len;
__u16 __pad;
__s32 pid;
__s32 tid;
__s32 sec;
__s32 nsec;
char msg[0];
};

#define LOGGER_LOG_RADIO "log_radio" /* radio-related messages */
Expand Down

0 comments on commit 5531d51

Please sign in to comment.