mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 19:55:53 +03:00
25 lines
433 B
C
25 lines
433 B
C
/* include/c/tune.h
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
/** Tuning ifdefs. Comment out to disable.
|
|
**/
|
|
/** Profiling.
|
|
**/
|
|
/* Profile at all.
|
|
*/
|
|
# define U2_PROFILE
|
|
|
|
/* Measure memory usage.
|
|
*/
|
|
# define U2_PROFILE_MEMORY
|
|
|
|
/* Measure execution time.
|
|
*/
|
|
# define U2_PROFILE_SPEED
|
|
|
|
/* Describe execution patterns.
|
|
*/
|
|
# define U2_PROFILE_SHAPE
|
|
|