Returns the current OS stack trace as a String. Parameters: max_depth - the maximum number of stack frames to be included in the trace. skip_count - the number of top frames to be skipped; doesn't count against max_depth. L < mutex_ We use "L < mutex_" to denote that the function may acquire mutex_.
| 4836 | // L < mutex_ |
| 4837 | // We use "L < mutex_" to denote that the function may acquire mutex_. |
| 4838 | String OsStackTraceGetter::CurrentStackTrace(int, int) { |
| 4839 | return String(""); |
| 4840 | } |
| 4841 | |
| 4842 | // L < mutex_ |
| 4843 | void OsStackTraceGetter::UponLeavingGTest() { |