代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/392544/8337619
c t_raw.c
#include "apue.h"
static void
sig_catch(int signo)
{
printf("signal caught\n");
tty_reset(STDIN_FILENO);
exit(0);
}
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR)
www.eeworm.com/read/269691/11083566
21 fig18.21
#include "apue.h"
static void
sig_catch(int signo)
{
printf("signal caught\n");
tty_reset(STDIN_FILENO);
exit(0);
}
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR)
www.eeworm.com/read/269691/11083765
c t_raw.c
#include "apue.h"
static void
sig_catch(int signo)
{
printf("signal caught\n");
tty_reset(STDIN_FILENO);
exit(0);
}
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR)
www.eeworm.com/read/335362/12535160
21 fig18.21
#include "apue.h"
static void
sig_catch(int signo)
{
printf("signal caught\n");
tty_reset(STDIN_FILENO);
exit(0);
}
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR)
www.eeworm.com/read/335362/12535449
c t_raw.c
#include "apue.h"
static void
sig_catch(int signo)
{
printf("signal caught\n");
tty_reset(STDIN_FILENO);
exit(0);
}
int
main(void)
{
int i;
char c;
if (signal(SIGINT, sig_catch) == SIG_ERR)
www.eeworm.com/read/202231/15389007
cpp datarecovery.cpp
// *************************************************************************
//
// This File Is Automatically Generated by the StarBusIDL-to-C++ Compiler !
//
// Copyright (c) 2000
// Network Informat
www.eeworm.com/read/112818/15475953
s nios_setup.s
; ----------------------------------------
; If you don't define your own _start,
; this one will get linked in (if you link
; against libnios.a in your ld stage).
;
; This _start sets up the s
www.eeworm.com/read/108554/15584204
cpp ex8_6.cpp
/* Code for exercise 8.6.
|
| "C++ Solutions--Companion to The C++ Programming Language, Third Edition"
| by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3.
|
| Permission to us
www.eeworm.com/read/179153/5309642
plx five_fail.plx
require Test::Simple;
use lib 't/lib';
require Test::Simple::Catch;
my($out, $err) = Test::Simple::Catch::caught();
Test::Simple->import(tests => 5);
ok(0);
ok(0);
ok('');
ok(0);
ok(0);
www.eeworm.com/read/179153/5309643
plx death_in_eval.plx
require Test::Simple;
use Carp;
push @INC, 't/lib';
require Test::Simple::Catch;
my($out, $err) = Test::Simple::Catch::caught();
Test::Simple->import(tests => 5);
ok(1);
ok(1);
ok(1);
eval {