오늘은 소설입니다.
sun's longitude:239 47 49.17 
· 자유게시판 · 묻고답하기 · 알파문서 · RPMS list
· 사용자문서 · 팁/FAQ모음 · 리눅스Links · 자료실
· 서버정보 · 운영자 · Books/FAQ · FreeBSD
/board/read.php:소스보기  
알파문서
자주 잊어먹거나, 메모해 둘 필요성이 있는 팁이나 문서, 기타 등등
[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
88 번 글: [C] microtime 구현
글쓴이: 산이 [홈페이지] 글쓴날: 2004년 04월 27일 22:55:07 화(저녁) 조회: 3414
/*
 * san2(at)linuxchannel.net
 */

#include <stdio.h>
#include <sys/time.h>

double microtime(void);

#define NUL  '\0'
#define MICRO_IN_SEC 1000000.00
#define SEC_IN_MIN 60

int main()
{
  double s, e;

  s = microtime();
  e = microtime();

  printf("%.8f\n",s);
  printf("%.8f\n",e);

  printf("%.8f\n",(e-s));

  return;
}

double microtime(void)
{
  struct timeval tp;
  long sec = 0L;
  double msec = 0.0;
  double tsec = 0.0;

  if (gettimeofday((struct timeval *) &tp, (NUL)) == 0)
  {
        msec = (double) (tp.tv_usec / MICRO_IN_SEC);
        sec = tp.tv_sec;

        if (msec >= 1.0) msec -= (long) msec;
        tsec = msec + sec;
  }

  return tsec;
}

 
이전글 : [Apache] log_request_duration.patch
다음글 : Re: apache-2.0.x -- %D  
 from 61.254.75.122
JS(Redhands)Board 0.4 +@

|글쓰기| |답장쓰기| |수정|
|이전글| |다음글| |목록보기|
인쇄용 

apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.01(server) + (network) + (browser) seconds