代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/476738/6748990
c signal.c
#include "apue.h"
/* Reliable version of signal(), using POSIX sigaction(). */
Sigfunc *
signal(int signo, Sigfunc *func)
{
struct sigaction act, oact;
act.sa_handler = func;
sigemptyset(&act.sa
www.eeworm.com/read/476848/6751766
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/476848/6751920
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/476848/6752030
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/476611/6756833
wpj signal.wpj
Document file - DO NOT EDIT
BUILD_ARMARCH4gnu_MACRO_AR
ararm
BUILD_ARMARCH4gnu_MACRO_ARCHIVE
$(PRJ_DIR)/ARMARCH4gnu/signal.a
BUILD_ARMARCH4gnu_MACRO_AS
ccarm
www.eeworm.com/read/476611/6756834
c signal.c
#include "vxworks.h"
#include "semLib.h"
#include "errnoLib.h"
#include "sigLib.h"
/*定义堆栈大小*/
#define STACK_SIZE 20000
/*定义任务ID*/
int tidSigReceiver;
int tidSigSend;
/*定义信号量ID*/
SEM_ID
www.eeworm.com/read/476611/6756836
out signal.out
www.eeworm.com/read/476611/6756837
o signal.o
www.eeworm.com/read/264377/11317275
c signal.c
#include "apue.h"
/* Reliable version of signal(), using POSIX sigaction(). */
Sigfunc *
signal(int signo, Sigfunc *func)
{
struct sigaction act, oact;
act.sa_handler = func;
sigemptyset(&act.sa
www.eeworm.com/read/409148/11344628