Added an equals function to backtrace_t
This commit is contained in:
@@ -49,6 +49,14 @@ struct backtrace_t {
|
||||
*/
|
||||
bool (*contains_function)(backtrace_t *this, char *function[], int count);
|
||||
|
||||
/**
|
||||
* Check two backtraces for equality.
|
||||
*
|
||||
* @param other backtrace to compare to this
|
||||
* @return TRUE if backtraces are equal
|
||||
*/
|
||||
bool (*equals)(backtrace_t *this, backtrace_t *other);
|
||||
|
||||
/**
|
||||
* Destroy a backtrace instance.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user