代码搜索:Array Signal Processing

找到约 10,000 项符合「Array Signal Processing」的源代码

代码结果 10,000
www.eeworm.com/read/190618/8440792

h signal.h

#ifndef _SIGNAL_ #define _SIGNAL_ /* request types */ #define SIGINT 2 /* args & returns */ #define SIG_ERR (void (*)())-1 #define SIG_DFL (void (*)())0 #define SIG_IGN (void (*)())1 void (*s
www.eeworm.com/read/290548/8477104

c signal.c

/* * linux/kernel/signal.c * * Copyright (C) 1991, 1992 Linus Torvalds * * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson * * 2003-06-02 Jim Houston - Concurrent Computer
www.eeworm.com/read/189219/8483853

c signal.c

/* Reliable version of signal(), using POSIX sigaction(). */ #include #include "ourhdr.h" Sigfunc * signal(int signo, Sigfunc *func) { struct sigaction act, oact; act.sa_handler = fun
www.eeworm.com/read/189219/8484260

c signal.c

/* Reliable version of signal(), using POSIX sigaction(). */ #include #include "ourhdr.h" Sigfunc * signal(int signo, Sigfunc *func) { struct sigaction act, oact; act.sa_handler = fun
www.eeworm.com/read/189219/8484517

c signal.c

/* Reliable version of signal(), using POSIX sigaction(). */ #include #include "ourhdr.h" Sigfunc * signal(int signo, Sigfunc *func) { struct sigaction act, oact; act.sa_handler = fun
www.eeworm.com/read/289593/8540731

h signal.h

#ifndef SIGNAL_H #define SIGNAL_H #include #include sigset_t signal_set; void * signal_waiter(void *arg); void sigint_handler(void); void sigalrm_handler(void); #endif
www.eeworm.com/read/289593/8540732

c signal.c

#include #include #include #include #include #include "Signal.h" #include "Data.h" #include "Resume.h" #include "Misc.h" extern int nthreads;
www.eeworm.com/read/389093/8548825

h signal.h

www.eeworm.com/read/433074/8548922

c signal.c

#include gint destroy(GtkWidget *, gpointer); int main(int argc, char **argv) { GtkWidget *window; gtk_init(&argc, &argv); window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_t
www.eeworm.com/read/289120/8574749

h signal.h

#ifndef _SIGNAL_H #define _SIGNAL_H #include typedef int sig_atomic_t; typedef unsigned int sigset_t; /* 32 bits */ #define _NSIG 32 #define NSIG _NSIG #define SIGHUP