$cat test.cpp
void longa()
{
int i,j;
for(i = 0; i < 900000000000; i++)
j=i; //am I silly or crazy? I feel boring and desperate.
}
void foo2()
{
int i;
for(i=0 ; i < 90000000000; i++)
longa();
}
void foo1()
{
int i;
for(i = 0; i< 9009999999900; i++)
longa();
}
int main(void)
{
foo1();
foo2();
}
——————
perf top