代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4740952
mh signal.mh
/***************************************************************************
* FILE: signal.h/csignal (Signal definitions)
*
:include crwatqnx.sp
*
* Description: This header is part of the C
www.eeworm.com/read/229812/4744520
c signal.c
#include
sig_atomic_t signal_count;
void MyHandler( int sig_number )
{
++signal_count;
}
void main()
{
signal( SIGFPE, MyHandler ); /* set own handler */
www.eeworm.com/read/229812/4751133
gml signal.gml
.func signal
#include
void ( *signal(int sig, void (*func)(int)) )( int );
.ixfunc2 '&Errs' &func
.funcend
.desc begin
The &func function is used to specify an action to take place wh
www.eeworm.com/read/229812/4753411
c signal.c
/*
*
* BSD sockets functionality for Waterloo TCP/IP
*
* Version
*
* 0.5 : Dec 18, 1997 : G. Vanem - created
*/
#include
#include
#include "socket.h"
www.eeworm.com/read/229511/4754988
h signal.h
/* sys/signal.h */
#ifndef _SYS_SIGNAL_H
#define _SYS_SIGNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#include "_ansi.h"
//#include
/* #ifndef __STRICT_ANSI__*/
#if
www.eeworm.com/read/229511/4754998
h signal.h
#ifndef _SIGNAL_H_
#define _SIGNAL_H_
#include "_ansi.h"
#include
typedef int sig_atomic_t; /* Atomic entity type (ANSI) */
#if defined(__STDC__) || defined(__cplusplus)
#d
www.eeworm.com/read/226641/4782865
ver signal.ver
#define __ver_dequeue_signal fe4dd3a4
#define dequeue_signal _set_ver(dequeue_signal)
#define __ver_flush_signals a92cace8
#define flush_signals _set_ver(flush_signals)
#define __ver_force_sig efaa553
www.eeworm.com/read/217381/4871373
h signal.h
#ifndef _ASMPPC_SIGNAL_H
#define _ASMPPC_SIGNAL_H
#include
/* Avoid too many header ordering problems. */
struct siginfo;
/* Most things should be clean enough to redefine this at
www.eeworm.com/read/217239/4874938
s signal.s
/ int signal ( int signal , sig_h handler )
.globl _signal
_signal:
movl 4(%esp), %ecx
movl 8(%esp), %edx
movw $0x7f0c, %ax
int $0x21
cmpl $-1, %eax
jne 1f
movl $22, _err
www.eeworm.com/read/217239/4874943
h _signal.h
/* This is file SIGNAL.H */
#ifndef _SYS_SIGNAL_H_
#define _SYS_SIGNAL_H_
#define SIG_ERR ((void (*)(int))(-1))
#define SIG_DFL ((void (*)(int))(0))
#define SIG_IGN ((void (*)(int))(1))
#def