代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/217239/4874974
h signal.h
/* sys/signal.h (emx+gcc) */
#if !defined (_SYS_SIGNAL_H)
#define _SYS_SIGNAL_H
#if defined (__cplusplus)
extern "C" {
#endif
typedef int sig_atomic_t;
#define SIGTY void
#define SIG
www.eeworm.com/read/216802/4880898
c signal.c
#include
#include
#include
#include
void _default_handler(int signal);
typedef void (*__p_sig_fn_t)(int);
typedef struct _sig_element
{
www.eeworm.com/read/216802/4881135
h signal.h
/*
* Copyright (c) 1982, 1986, 1989, 1991, 1993
* The Regents of the University of California. All rights reserved.
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file ar
www.eeworm.com/read/216802/4881163
h signal.h
/*
* Copyright (c) 1986, 1989, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modifi
www.eeworm.com/read/216781/4887980
c signal.c
/* include signal */
#include "unpipc.h"
Sigfunc *
signal(int signo, Sigfunc *func)
{
struct sigaction act, oact;
act.sa_handler = func;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
www.eeworm.com/read/216502/4890385
2 signal.2
.TH SIGNAL 2
.SH NAME
signal \- catch or ignore signals
.SH SYNOPSIS
.B #include
.PP
.B (*signal(sig, func))()
.br
.B (*func)();
.SH DESCRIPTION
A signal
is generated by some abnormal even
www.eeworm.com/read/216502/4890883
h signal.h
#define NSIG 17
#define SIGHUP 1 /* hangup */
#define SIGINT 2 /* interrupt */
#define SIGQUIT 3 /* quit */
#define SIGILL 4 /* illegal instruction (not reset when caught) */
#define SIGTRAP 5 /* tra
www.eeworm.com/read/216502/4891773
s signal.s
/ C library -- signal
/ signal(n, 0); /* default action on signal(n) */
/ signal(n, odd); /* ignore signal(n) */
/ signal(n, label); /* goto label on signal(n) */
/ returns old label, only one level.
www.eeworm.com/read/216502/4891975
c signal_.c
signal_(sigp, procp)
int *sigp, (**procp)();
{
int sig, proc;
sig = *sigp;
proc = *procp;
return( signal(sig, proc) );
}
www.eeworm.com/read/216499/4892275
2 signal.2
.th SIGNAL II 8/5/73
.sh NAME
signal \*- catch or ignore signals
.sh SYNOPSIS
(signal = 48.)
.br
.ft B
sys signal; sig; label
.ft R
.br
(old value in r0)
.s3
.ft B
signal(sig, func)
.br
int (*func)(