'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct crash_ctx

odtone::crash_ctx

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/debug.hpp>


struct crash_ctx {

  // public data members
  bug code;
  void * address;
  const char * function;
  const char * file;
  uint line;
  const char * expression;
  void * context;
};

Description

Crash context structure.

crash_ctx public public data members

  1. bug code;

    Crash bug code.

  2. void * address;

    Crash address.

  3. const char * function;

    Crash function.

  4. const char * file;

    Crash file.

  5. uint line;

    Crash line.

  6. const char * expression;

    Crash expression.

  7. void * context;

    Crash context.


PrevUpHomeNext