]> git.cworth.org Git - apitrace/blobdiff - common/trace_writer.hpp
common: rename trace_backtrace.* -> os_backtrace.*
[apitrace] / common / trace_writer.hpp
index a46b43edc487f15faff6f22bc68fade0a57924fa..4c9547788c8e28b5833943744b86f18f533280dd 100644 (file)
@@ -37,7 +37,6 @@
 
 #include "trace_model.hpp"
 
-
 namespace trace {
     class File;
 
@@ -50,6 +49,7 @@ namespace trace {
         std::vector<bool> structs;
         std::vector<bool> enums;
         std::vector<bool> bitmasks;
+        std::vector<bool> frames;
 
     public:
         Writer();
@@ -70,6 +70,10 @@ namespace trace {
         void beginReturn(void);
         inline void endReturn(void) {}
 
+        void beginBacktrace(unsigned num_frames);
+        void writeStackFrame(const RawStackFrame *frame);
+        inline void endBacktrace(void) {}
+
         void beginArray(size_t length);
         inline void endArray(void) {}