projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed typo (no code changes)
[wxWidgets.git]
/
src
/
unix
/
utilsunx.cpp
diff --git
a/src/unix/utilsunx.cpp
b/src/unix/utilsunx.cpp
index 2447a559fd4aa64cd3768eb362e36bdfa3d9a034..9d7034dda63c34ab5922fe7a5c1cec3f1c246152 100644
(file)
--- a/
src/unix/utilsunx.cpp
+++ b/
src/unix/utilsunx.cpp
@@
-47,6
+47,7
@@
#if defined( __MWERKS__ ) && defined(__MACH__)
#define WXWIN_OS_DESCRIPTION "MacOS X"
#define HAVE_NANOSLEEP
#if defined( __MWERKS__ ) && defined(__MACH__)
#define WXWIN_OS_DESCRIPTION "MacOS X"
#define HAVE_NANOSLEEP
+#define HAVE_UNAME
#endif
// not only the statfs syscall is called differently depending on platform, but
#endif
// not only the statfs syscall is called differently depending on platform, but
@@
-148,12
+149,12
@@
void wxSleep(int nSecs)
sleep(nSecs);
}
sleep(nSecs);
}
-void wx
Usleep(unsigned long milli
seconds)
+void wx
MicroSleep(unsigned long micro
seconds)
{
#if defined(HAVE_NANOSLEEP)
timespec tmReq;
{
#if defined(HAVE_NANOSLEEP)
timespec tmReq;
- tmReq.tv_sec = (time_t)(mi
lliseconds / 1
000);
- tmReq.tv_nsec = (mi
lliseconds % 1000) * 1000
* 1000;
+ tmReq.tv_sec = (time_t)(mi
croseconds / 1000
000);
+ tmReq.tv_nsec = (mi
croseconds % 1000000)
* 1000;
// we're not interested in remaining time nor in return value
(void)nanosleep(&tmReq, (timespec *)NULL);
// we're not interested in remaining time nor in return value
(void)nanosleep(&tmReq, (timespec *)NULL);
@@
-166,15
+167,20
@@
void wxUsleep(unsigned long milliseconds)
#error "usleep() cannot be used in MT programs under Solaris."
#endif // Sun
#error "usleep() cannot be used in MT programs under Solaris."
#endif // Sun
- usleep(mi
lliseconds * 1000); // usleep(3) wants microseconds
+ usleep(mi
croseconds);
#elif defined(HAVE_SLEEP)
// under BeOS sleep() takes seconds (what about other platforms, if any?)
#elif defined(HAVE_SLEEP)
// under BeOS sleep() takes seconds (what about other platforms, if any?)
- sleep(mi
lliseconds * 1
000);
+ sleep(mi
croseconds * 1000
000);
#else // !sleep function
#else // !sleep function
- #error "usleep() or nanosleep() function required for wx
Us
leep"
+ #error "usleep() or nanosleep() function required for wx
MicroS
leep"
#endif // sleep function
}
#endif // sleep function
}
+void wxMilliSleep(unsigned long milliseconds)
+{
+ wxMicroSleep(milliseconds*1000);
+}
+
// ----------------------------------------------------------------------------
// process management
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// process management
// ----------------------------------------------------------------------------
@@
-507,7
+513,9
@@
long wxExecute(wxChar **argv,
// start an xterm executing it.
if ( !(flags & wxEXEC_SYNC) )
{
// start an xterm executing it.
if ( !(flags & wxEXEC_SYNC) )
{
- for ( int fd = 0; fd < FD_SETSIZE; fd++ )
+ // FD_SETSIZE is unsigned under BSD, signed under other platforms
+ // so we need a cast to avoid warnings on all platforms
+ for ( int fd = 0; fd < (int)FD_SETSIZE; fd++ )
{
if ( fd == pipeIn[wxPipe::Read]
|| fd == pipeOut[wxPipe::Write]
{
if ( fd == pipeIn[wxPipe::Read]
|| fd == pipeOut[wxPipe::Write]
@@
-925,7
+933,7
@@
bool wxSetEnv(const wxString& variable, const wxChar *value)
s << _T('=') << value;
// transform to ANSI
s << _T('=') << value;
// transform to ANSI
- const
char *
p = s.mb_str();
+ const
wxWX2MBbuf
p = s.mb_str();
// the string will be free()d by libc
char *buf = (char *)malloc(strlen(p) + 1);
// the string will be free()d by libc
char *buf = (char *)malloc(strlen(p) + 1);
@@
-933,7
+941,7
@@
bool wxSetEnv(const wxString& variable, const wxChar *value)
return putenv(buf) == 0;
#else // no way to set an env var
return putenv(buf) == 0;
#else // no way to set an env var
- return
FALSE
;
+ return
false
;
#endif
}
#endif
}
@@
-1157,10
+1165,10
@@
int wxGUIAppTraits::WaitForChild(wxExecuteData& execData)
}
#endif // wxUSE_STREAMS
}
#endif // wxUSE_STREAMS
- // don't consume 100% of the CPU while we're sitting
this
in this
+ // don't consume 100% of the CPU while we're sitting in this
// loop
if ( idle )
// loop
if ( idle )
- wx
Us
leep(1);
+ wx
MilliS
leep(1);
// give GTK+ a chance to call GTK_EndProcessDetector here and
// also repaint the GUI
// give GTK+ a chance to call GTK_EndProcessDetector here and
// also repaint the GUI