blob: 03af81d13d5304375e95001159040659d15da786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/**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 $]
***********************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "abc_global.h"
#include "utilSignal.h"
#ifdef _MSC_VER
#define unlink _unlink
#else
#include <unistd.h>
#endif
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
int Util_SignalSystem(const char* cmd)
{
return system(cmd);
}
int tmpFile(const char* prefix, const char* suffix, char** out_name);
int Util_SignalTmpFile(const char* prefix, const char* suffix, char** out_name)
{
return tmpFile(prefix, suffix, out_name);
}
void Util_SignalTmpFileRemove(const char* fname, int fLeave)
{
if (! fLeave)
{
unlink(fname);
}
}
ABC_NAMESPACE_IMPL_END
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
|