Ich bin ziemlich neu in Ubuntu, aber ich kann nicht scheinen, dass dies funktioniert. Es funktioniert gut auf meinen Schulcomputern und ich weiß nicht, was ich nicht tue. Ich habe usr / include und time.h überprüft . Hier ist der Code:
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
timespec time1, time2;
int temp;
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
//do stuff here
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
return 0;
}
Ich verwende CodeBlocks als IDE zum Erstellen und Ausführen. Jede Hilfe wäre toll, danke.
-D_XOPEN_SOURCE=600
auch. Siehe auch GCC mit -std = c99 beschwert sich darüber, dass die Strukturzeitangabe nicht bekannt ist .