프로세스가 시작한 시간 구하기

zflute의 이미지

python으로 개발된 child 프로그램이 타임아웃이 잘 먹지 않아서 cron 을 이용해서 실행된 후에 일정 시간이 지난 프로그램을 kill 하려고 합니다.
ps 명령어를 실행시켜서 보면 START 부분이 프로세스가 실행된 시간인데, /proc/PID/stat를 읽어와서 뿌려주는 것 같은데, stat에서 어떤 부분이 start time인지 알 수가 없네요.

$ cat stat
20804 (python) S 29977 29975 29975 0 -1 0 2478 25668 955 3410 16 22 87 36 15 0 0 6000 77954307 8777728 997 4294967295 134512640 135281960 3221222864 3221220600 4294959106 0 2147221247 16781313 8194 3222461405 0 0 17 1 0 0 16 22 87 36

여기서 start time에 해당하는 부분은 어딘가요?

참고로 구글에서 찾은바로는,

  int           pid;                      /** The process id. **/
  char          exName [_POSIX_PATH_MAX]; /** The filename of the executable **/
  char          state; /** 1 **/          /** R is running, S is sleeping, 
                           D is sleeping in an uninterruptible wait,
                           Z is zombie, T is traced or stopped **/
  unsigned      euid,                      /** effective user id **/
                egid;                      /** effective group id */                                         
  int           ppid;                     /** The pid of the parent. **/
  int           pgrp;                     /** The pgrp of the process. **/
  int           session;                  /** The session id of the process. **/
  int           tty;                      /** The tty the process uses **/
  int           tpgid;                    /** (too long) **/
  unsigned int  flags;                    /** The flags of the process. **/
  unsigned int  minflt;                   /** The number of minor faults **/
  unsigned int  cminflt;                  /** The number of minor faults with childs **/
  unsigned int  majflt;                   /** The number of major faults **/
  unsigned int  cmajflt;                  /** The number of major faults with childs **/
  int           utime;                    /** user mode jiffies **/
  int           stime;                    /** kernel mode jiffies **/
  int           cutime;                   /** user mode jiffies with childs **/
  int           cstime;                   /** kernel mode jiffies with childs **/
  int           counter;                  /** process's next timeslice **/
  int           priority;                 /** the standard nice value, plus fifteen **/
  unsigned int  timeout;                  /** The time in jiffies of the next timeout **/
  unsigned int  itrealvalue;              /** The time before the next SIGALRM is sent to the process **/
  int           starttime; /** 20 **/     /** Time the process started after system boot **/
  unsigned int  vsize;                    /** Virtual memory size **/
  unsigned int  rss;                      /** Resident Set Size **/
  unsigned int  rlim;                     /** Current limit in bytes on the rss **/
  unsigned int  startcode;                /** The address above which program text can run **/
  unsigned int  endcode;                  /** The address below which program text can run **/
  unsigned int  startstack;               /** The address of the start of the stack **/
  unsigned int  kstkesp;                  /** The current value of ESP **/
  unsigned int  kstkeip;                 /** The current value of EIP **/
  int           signal;                   /** The bitmap of pending signals **/
  int           blocked; /** 30 **/       /** The bitmap of blocked signals **/
  int           sigignore;                /** The bitmap of ignored signals **/
  int           sigcatch;                 /** The bitmap of catched signals **/
  unsigned int  wchan;  /** 33 **/        /** (too long) **/
  int           sched,            /** scheduler **/
                sched_priority;           /** scheduler priority **/

인데, 항목을 찾아보면 starttime에 해당하는 값은 1이네요. :?
끝자리가 맞지 않아 좀 이상하긴 하지만...

서지훈의 이미지

ls -l /proc/#
여기서 나온 시간...-_-ㅋ
이거면 확실한거 아닌가요?
저기 아래에서의 값은 글쎄요?

<어떠한 역경에도 굴하지 않는 '하양 지훈'>

#include <com.h> <C2H5OH.h> <woman.h>
do { if (com) hacking(); if (money) drinking(); if (women) loving(); } while (1);

zflute의 이미지

서지훈 wrote:
ls -l /proc/#
여기서 나온 시간...-_-ㅋ
이거면 확실한거 아닌가요?
저기 아래에서의 값은 글쎄요?

<어떠한 역경에도 굴하지 않는 '하양 지훈'>

/proc 이하 디렉토리는 계속 갱신되기 때문에 sleep인 프로세스일 경우에도 디렉토리 생성시간은 '현재'로 표시되지 않나요?

zflute의 이미지

삽질을 좀 하다 보니 알아냈네요.
22번째 항목(77954307)이네요. :-)
밀리초 단위라서 끝에 두자리 없애고 86400초로 나누면 부팅된 이후 부터 몇일지 지난 시점에 실행되었는지 알 수 있습니다.
779543 / 86400 = ???

Quote:

$ cat stat
20804 (python) S 29977 29975 29975 0 -1 0 2478 25668 955 3410 16 22 87 36 15 0 0 6000 77954307 8777728 997 4294967295 134512640 135281960 3221222864 3221220600 4294959106 0 2147221247 16781313 8194 3222461405 0 0 17 1 0 0 16 22 87 36
leilei의 이미지

man 5 proc 에 나오는 이야기가 맞죠? :D

서지훈의 이미지

아...

/proc는 가상 파일 시스템인것을...-_-ㅋ
일반 파일 시스템으로 착각한게아니라...
평소에 관심을 갖기가 않아서 이런 잘못된 답변을 드린것 같군요...-_-ㅋ
무안...-_-ㅋ

<어떠한 역경에도 굴하지 않는 '하양 지훈'>

#include <com.h> <C2H5OH.h> <woman.h>
do { if (com) hacking(); if (money) drinking(); if (women) loving(); } while (1);

ai의 이미지

zflute wrote:
삽질을 좀 하다 보니 알아냈네요.
22번째 항목(77954307)이네요. :-)
밀리초 단위라서 끝에 두자리 없애고 86400초로 나누면 부팅된 이후 부터 몇일지 지난 시점에 실행되었는지 알 수 있습니다.
779543 / 86400 = ???

Quote:

$ cat stat
20804 (python) S 29977 29975 29975 0 -1 0 2478 25668 955 3410 16 22 87 36 15 0 0 6000 77954307 8777728 997 4294967295 134512640 135281960 3221222864 3221220600 4294959106 0 2147221247 16781313 8194 3222461405 0 0 17 1 0 0 16 22 87 36

언제나 밀리초 단위인 것은 아닙니다. 자세한 내용은 procps 소스코드를 참고하시면 되고, perl 로 옮겨 쓴 것은 아래에 있습니다. linux kernel 2.4 on single x86 정도에서는 잘 동작합니다.

http://cizz.net/pub/check.pending.pl

War doesnt determine whos right, just whos left.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.