aboutsummaryrefslogtreecommitdiff
path: root/backend.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-12-17 03:38:36 +0100
committerPetr Machata <pmachata@redhat.com>2012-12-17 03:38:36 +0100
commit6dfc544b6aa6703d2292be34470aebf874d78452 (patch)
treebba67ea4e0bbfb2ce691d933fdfe3865eb2dcbbb /backend.h
parent929bd57ca202fd2f2e8485ebf65d683e664f67b5 (diff)
downloadltrace-6dfc544b6aa6703d2292be34470aebf874d78452.tar.gz
Make enum process_status enumerators uppercase
Rationale: coding style consistency.
Diffstat (limited to 'backend.h')
-rw-r--r--backend.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/backend.h b/backend.h
index 57c2f03..314ad93 100644
--- a/backend.h
+++ b/backend.h
@@ -27,12 +27,12 @@
#include <gelf.h>
enum process_status {
- ps_invalid, /* Failure. */
- ps_stop, /* Job-control stop. */
- ps_tracing_stop,
- ps_sleeping,
- ps_zombie,
- ps_other, /* Necessary other states can be added as needed. */
+ PS_INVALID, /* Failure. */
+ PS_STOP, /* Job-control stop. */
+ PS_TRACING_STOP,
+ PS_SLEEPING,
+ PS_ZOMBIE,
+ PS_OTHER, /* Necessary other states can be added as needed. */
};
/*