#include <unistd.h>
#include <sys/types.h>
-#include <sys/stat.h>
+#include <sys/stat.h> // for S_I[RW]USR
#include <signal.h> // for kill()
#include <errno.h>
// try to open the file
m_fdLock = open(m_nameLock,
O_WRONLY | O_CREAT | O_EXCL,
- S_IREAD | S_IWRITE);
+ S_IRUSR | S_IWUSR);
if ( m_fdLock != -1 )
{
// use char here, not wxChar!
char buf[256]; // enough for any PID size
- int len = sprintf(buf, "%d", m_pidLocker) + 1;
+ int len = sprintf(buf, "%d", (int)m_pidLocker) + 1;
if ( write(m_fdLock, buf, len) != len )
{
}
else
{
- if ( sscanf(buf, "%d", &m_pidLocker) == 1 )
+ if ( sscanf(buf, "%d", (int *)&m_pidLocker) == 1 )
{
if ( kill(m_pidLocker, 0) != 0 )
{