mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
15 lines
228 B
C++
15 lines
228 B
C++
#include <stdio.h>
|
|
|
|
#include "nsISupportsUtils.h"
|
|
#include "nsTraceRefCnt.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
char buf[16384];
|
|
nsTraceRefcnt::WalkTheStack(buf, sizeof(buf));
|
|
printf("%s\n", buf);
|
|
|
|
return 0;
|
|
}
|
|
|