0

次のようなユーザー空間コードがあります。

try
{
some code
...
code that tries accessing forbidden address
...
some code
}
catch (all exceptions)
{
some logs
}

カーネルは、SIGSEGVこの無効なアクセスに対してユーザー プロセスにシグナルを送信し、どのようdefaultな動作になるか (シグナル ハンドラーをインストールしないでください)。システムになりますcrash

4

2 に答える 2

1

この場合、例外は生成されません。シグナルハンドラーを設定する必要があります。それを行う方法を人の信号に見てみましょう。

:_

#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>

static void hdl (int sig, siginfo_t *siginfo, void *context)
{
    printf ("Sending PID: %ld, UID: %ld\n",
            (long)siginfo->si_pid, (long)siginfo->si_uid);
}

int main (int argc, char *argv[])
{
    struct sigaction act;

    memset (&act, '\0', sizeof(act));

    /* Use the sa_sigaction field because the handles has two additional parameters */
    act.sa_sigaction = &hdl;

    /* The SA_SIGINFO flag tells sigaction() to use the sa_sigaction field, not sa_handler. */
    act.sa_flags = SA_SIGINFO;

    if (sigaction(SIGTERM, &act, NULL) < 0) {
        perror ("sigaction");
        return 1;
    }

    while (1)
        sleep (10);

    return 0;
}
于 2012-09-12T08:58:16.173 に答える
1

禁止されたアドレスにアクセスしようとするコード

これを でキャッチすることはできませんC++ exceptions。解決策のみplatform-dependent

于 2012-09-12T07:55:13.813 に答える