Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
00eafb23
Commit
00eafb23
authored
Jul 07, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing time printouts in 'pdr'.
parent
968b59aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/misc/util/abc_global.h
+4
-4
No files found.
src/misc/util/abc_global.h
View file @
00eafb23
...
...
@@ -285,19 +285,19 @@ static inline void Abc_Print( int level, const char * format, ... )
va_end
(
args
);
}
static
inline
void
Abc_PrintTime
(
int
level
,
const
char
*
pStr
,
in
t
time
)
static
inline
void
Abc_PrintTime
(
int
level
,
const
char
*
pStr
,
clock_
t
time
)
{
ABC_PRT
(
pStr
,
time
);
}
static
inline
void
Abc_PrintTimeP
(
int
level
,
const
char
*
pStr
,
int
time
,
in
t
Time
)
static
inline
void
Abc_PrintTimeP
(
int
level
,
const
char
*
pStr
,
clock_t
time
,
clock_
t
Time
)
{
ABC_PRTP
(
pStr
,
time
,
Time
);
}
static
inline
void
Abc_PrintMemoryP
(
int
level
,
const
char
*
pStr
,
int
time
,
int
Time
)
static
inline
void
Abc_PrintMemoryP
(
int
level
,
const
char
*
pStr
,
int
mem
,
int
Mem
)
{
ABC_PRMP
(
pStr
,
time
,
Time
);
ABC_PRMP
(
pStr
,
mem
,
Mem
);
}
// Returns the next prime >= p
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment