前提・実現したいこと
以前質問した時間計測に関する問題の続きです。
clockget_time(CLOCK_MONOTONIC,&ts)
にかんするエラーコードなのですが、どのように解消したらよいでしょうか。
発生している問題・エラーメッセージ
ain.c:9:5: error: implicit declaration of function ‘clock_gettime’; did you mean ‘localtime’? [-Wimplicit-function-declaration] clock_gettime(CLOCK_MONOTONIC, &ts); ^~~~~~~~~~~~~ localtime main.c:9:19: error: ‘CLOCK_MONOTONIC’ undeclared (first use in this function) clock_gettime(CLOCK_MONOTONIC, &ts); ^~~~~~~~~~~~~~~
該当のソースコード
C
1 #include <stdio.h> 2 3 #include <unistd.h> 4 5 #include <time.h> 6 7 #include "exp1.h" 8 9#include "exp1lib.h" 10 11 12 13 double get_current_timecount() { 14 15 struct timespec ts; 16 17 clock_gettime(CLOCK_MONOTONIC, &ts); 18 19 return ts.tv_sec + ts.tv_nsec*1e-9; 20 21 } 22 23 24 25 int main( int argc, char* argv[] ) { 26 27 double t1 = get_current_timecount(); 28 29 int sock; 30 31 char buf[256]; 32 33 FILE* fp; 34 35 int ret; 36 37 38 39 if(argc != 3) { 40 41 printf("usage: %s [ip address] [filename]\n", argv[0]); 42 43 exit(-1); 44 45 } 46 47 48 49 sock = exp1_tcp_connect(argv[1], 11111); 50 51 fp = fopen(argv[2], "r"); 52 53 ret = fread(buf, sizeof(char), 256, fp); 54 55 while(ret > 0) { 56 57 send(sock, buf, ret, 0); 58 59 ret = fread(buf, sizeof(char), 256, fp); 60 61 } 62 63 close(sock); 64 65 66 67 68 69 sleep(3); 70 71 72 73 double t2 = get_current_timecount(); 74 75 printf("%lf\n", t2-t1); 76 77 return 0; 78 79 }
補足・試したこと
ちなみにほかの処理にも同じように時間計測を行ったときは、エディタにはCLOCK_MONOTONICにエラーが出ていましたが、コンパイルはでき、動作もしました。このときはmakefileを使っていなかったのですが、今回も同じようにmakefileを使わないで処理すると、
#include "exp1.h" ^~~~~~~~
このエラーが出てしまってできないので、階層を直してやってみたら
/tmp/ccKgkQFF.o: 関数 `main' 内: main.c:(.text+0xe5): `exp1_tcp_connect' に対する定義されていない参照です collect2: error: ld returned 1 exit status
といったエラーが出てしまいました。
あなたの回答
tips
プレビュー