simple.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Simple trace backend
  3. *
  4. * Copyright IBM, Corp. 2010
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2. See
  7. * the COPYING file in the top-level directory.
  8. *
  9. */
  10. #ifndef TRACE_SIMPLE_H
  11. #define TRACE_SIMPLE_H
  12. void st_print_trace_file_status(void);
  13. bool st_set_trace_file_enabled(bool enable);
  14. void st_set_trace_file(const char *file);
  15. bool st_init(void);
  16. void st_init_group(size_t group);
  17. void st_flush_trace_buffer(void);
  18. typedef struct {
  19. unsigned int tbuf_idx;
  20. unsigned int rec_off;
  21. } TraceBufferRecord;
  22. /* Note for hackers: Make sure MAX_TRACE_LEN < sizeof(uint32_t) */
  23. #define MAX_TRACE_STRLEN 512
  24. /**
  25. * Initialize a trace record and claim space for it in the buffer
  26. *
  27. * @arglen number of bytes required for arguments
  28. */
  29. int trace_record_start(TraceBufferRecord *rec, uint32_t id, size_t arglen);
  30. /**
  31. * Append a 64-bit argument to a trace record
  32. */
  33. void trace_record_write_u64(TraceBufferRecord *rec, uint64_t val);
  34. /**
  35. * Append a string argument to a trace record
  36. */
  37. void trace_record_write_str(TraceBufferRecord *rec, const char *s, uint32_t slen);
  38. /**
  39. * Mark a trace record completed
  40. *
  41. * Don't append any more arguments to the trace record after calling this.
  42. */
  43. void trace_record_finish(TraceBufferRecord *rec);
  44. #endif /* TRACE_SIMPLE_H */