代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/158865/5594439
c except.c
/* Exception support for GNU CHILL.
WARNING: Only works for native (needs setjmp.h)! FIXME!
Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU
www.eeworm.com/read/473001/6853984
cpp except.cpp
// Exceptions
// BZ_EXCEPTIONS
#include
class foo { };
int divide(int a, int b)
{
if (b == 0)
throw foo();
return a / b;
}
int main()
{
try {
www.eeworm.com/read/174273/9598820
asm except.asm
##############################################################################
#
# FILE
# __exception.s
#
# DESCRIPTION
# Exception/interrupt handler table.
#
# COPYRIGHT
# (c) 1996-8 Metr
www.eeworm.com/read/173684/9642978
h except.h
/*
* TOPPERS/JSP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Just Standard Profile Kernel
*
* Copyright (C) 2000-2002 by Embedded and Real-Time Systems Laborat
www.eeworm.com/read/173684/9642989
cpp except.cpp
/*
* TOPPERS/JSP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Just Standard Profile Kernel
*
* Copyright (C) 2000-2002 by Embedded and Real-Time Systems Laborat
www.eeworm.com/read/415722/11056668
asm except.asm
##############################################################################
#
# FILE
# __exception.s
#
# DESCRIPTION
# Exception/interrupt handler table.
#
# COPYRIGHT
# (c) 1996-8 Metr
www.eeworm.com/read/266994/11198502
h except.h
#ifndef EXCEPT_INCLUDED
#define EXCEPT_INCLUDED
#include
#define T Except_T
typedef struct T
{
char *reason;
} T
www.eeworm.com/read/266994/11198512
c except.c
#include
#include
#include "assert.h"
#include "except.h"
#define T Except_T
#ifdef WIN32
__declspec(thread)
#endif
Except_Frame *Except_stack = NULL;
v
www.eeworm.com/read/266994/11198540