kill() 에 넘겨주는 signal에 대해 간단한 질문 ..

shiefra의 이미지

간단한 shell을 짜보고 있는데요.
$kill -SIGNAL PID
를 위해 kill() 시스템콜을 사용하려다 보니까
인수로 넘겨줄 signal파라메터가 int타입이더군요.
살짝 검색해봤더니

#include <sys/types.h>
#include <signal.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
    int pid;
    int sig_num;

    // 아규먼트로 pid 번호와 
    // 전송할 signal 번호를 받아들여서 
    // 이를 해당 pid 로 보낸다. 
    pid = atoi(argv[1]);
    sig_num = atoi(argv[2]);

    kill(pid, sig_num);
}

이런 예제가 보이던데.. 이건 유저가
$kill PID 9
이런 식으로 명령을 내려야만 유효할거 같은데, 맞나요?

그리고 signal이 string으로 들어오면
kill()함수에 어떻게 넘겨주나요?

써놓고 보니 한심하네요 이런것도 모르고;

익명 사용자의 이미지

void
do_kill(int argc, const char ** argv)
{
        const char *    cp;
        int             sig;
        int             pid;

        sig = SIGTERM;

        if (argv[1][0] == '-')
        {
                cp = &argv[1][1];

                if (strcmp(cp, "HUP") == 0)
                        sig = SIGHUP;
                else if (strcmp(cp, "INT") == 0)
                        sig = SIGINT;
                else if (strcmp(cp, "QUIT") == 0)
                        sig = SIGQUIT;
                else if (strcmp(cp, "KILL") == 0)
                        sig = SIGKILL;
                else if (strcmp(cp, "STOP") == 0)
                        sig = SIGSTOP;
                else if (strcmp(cp, "CONT") == 0)
                        sig = SIGCONT;
                else if (strcmp(cp, "USR1") == 0)
                        sig = SIGUSR1;
                else if (strcmp(cp, "USR2") == 0)
                        sig = SIGUSR2;
                else if (strcmp(cp, "TERM") == 0)
                        sig = SIGTERM;
                else
                {
                        sig = 0;

                        while (isDecimal(*cp))
                                sig = sig * 10 + *cp++ - '0';

                        if (*cp)
                        {
                                fprintf(stderr, "Unknown signal\n");

                                return;
                        }
                }

                argc--;
                argv++;
        }

        while (argc-- > 1)
        {
                cp = *(++argv);
                pid = 0;
                while (isDecimal(*cp))
                        pid = pid * 10 + *cp++ - '0';

                if (*cp)
                {
                        fprintf(stderr, "Non-numeric pid\n");

                        return;
                }

                if (kill(pid, sig) < 0)
                        perror(*argv);
        }
}

sash-3.7 의 do_kill 함수입니다.

도움이 되셨는지요..

saxboy의 이미지

시그널에 대한 정의는 (32개였던가요..가물가물..) /usr/include/bits/signum.h 정도에 있습니다. 위치가 정확한지는 잘 모르겠지만...

사실 실제로 사용하는 시그널은 위에 있는 do_kill()함수내에 있는 것들 정도 뿐이겠지요.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.