代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/438297/7733226
h signal.h
/* Copyright (c) 2002, Marek Michalkiewicz
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following con
www.eeworm.com/read/435194/7795748
h signal.h
/***************************************************************************
signal.h - description
-------------------
begin
www.eeworm.com/read/435194/7795750
c signal.c
/***************************************************************************
signal.c - description
-------------------
begin
www.eeworm.com/read/389794/7805429
h signal.h
www.eeworm.com/read/289562/7805490
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/398823/7918171
obj signal.obj
www.eeworm.com/read/198623/7920138
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/198616/7922417
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/297836/7992976
h signal.h
/***************************************************************************
signal.h - description
-------------------
begin
www.eeworm.com/read/297836/7992982
c signal.c
/***************************************************************************
signal.c - description
-------------------
begin