/*
* Squeak profiling functions for Plan9.
*
* Author: Alex Franchuk (alex.franchuk@gmail.com)
*/
#include "sq.h"
sqInt clearProfile(void) {
return 0;
}
sqInt dumpProfile(void) {
return 0;
}
sqInt startProfiling(void) {
return 0;
}
sqInt stopProfiling(void) {
return 0;
}
|