mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Solaris didn't like this.
Let's just go ahead and make this match every other uintXX_t in Asterisk. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40833 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -405,7 +405,7 @@ int64_t ast_profile(int i, int64_t delta)
|
||||
#if defined(__FreeBSD__)
|
||||
#include <machine/cpufunc.h>
|
||||
#elif defined(linux)
|
||||
static __inline u_int64_t
|
||||
static __inline uint64_t
|
||||
rdtsc(void)
|
||||
{
|
||||
uint64_t rv;
|
||||
@@ -415,7 +415,7 @@ rdtsc(void)
|
||||
}
|
||||
#endif
|
||||
#else /* supply a dummy function on other platforms */
|
||||
static __inline u_int64_t
|
||||
static __inline uint64_t
|
||||
rdtsc(void)
|
||||
{
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user