ABC: A System for Sequential Synthesis and Verification
 
Loading...
Searching...
No Matches
utilSignal.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

ABC_NAMESPACE_HEADER_START int Util_SignalTmpFile (const char *prefix, const char *suffix, char **out_name)
 INCLUDES ///.
 
void Util_SignalTmpFileRemove (const char *fname, int fLeave)
 
int Util_SignalSystem (const char *cmd)
 DECLARATIONS ///.
 

Function Documentation

◆ Util_SignalSystem()

int Util_SignalSystem ( const char * cmd)
extern

DECLARATIONS ///.

CFile****************************************************************

FileName [utilSignal.c]

SystemName [ABC: Logic synthesis and verification system.]

PackageName []

Synopsis []

Author [Baruch Sterin]

Affiliation [UC Berkeley]

Date [Ver. 1.0. Started - February 1, 2011.]

Revision [

Id
utilSignal.c,v 1.00 2011/02/01 00:00:00 alanmi Exp

] FUNCTION DEFINITIONS ///

Definition at line 44 of file utilSignal.c.

45{
46#if defined(__wasm)
47 return -1;
48#else
49 return system(cmd);
50#endif
51}
int system()
Here is the call graph for this function:
Here is the caller graph for this function:

◆ Util_SignalTmpFile()

ABC_NAMESPACE_HEADER_START int Util_SignalTmpFile ( const char * prefix,
const char * suffix,
char ** out_name )
extern

INCLUDES ///.

CFile****************************************************************

FileName [utilSignal.h]

SystemName [ABC: Logic synthesis and verification system.]

PackageName [Signal handling utilities.]

Synopsis [Signal handling utilities.]

Author [Baruch Sterin]

Affiliation [UC Berkeley]

Date [Ver. 1.0. Started - February 1, 2011.]

Revision [

Id
utilSignal.h,v 1.00 2011/02/01 00:00:00 alanmi Exp

] PARAMETERS /// BASIC TYPES /// MACRO DEFINITIONS /// FUNCTION DECLARATIONS ///

Definition at line 55 of file utilSignal.c.

56{
57 return tmpFile(prefix, suffix, out_name);
58}
int tmpFile(const char *prefix, const char *suffix, char **out_name)
Definition utilFile.c:106
Here is the call graph for this function:
Here is the caller graph for this function:

◆ Util_SignalTmpFileRemove()

void Util_SignalTmpFileRemove ( const char * fname,
int fLeave )
extern

Definition at line 60 of file utilSignal.c.

61{
62 if (! fLeave)
63 {
64 unlink(fname);
65 }
66}
Here is the caller graph for this function: