-rw-r--r-- | core/launcher/stabmon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/stabmon.cpp b/core/launcher/stabmon.cpp index 2911a1c..3d0d534 100644 --- a/core/launcher/stabmon.cpp +++ b/core/launcher/stabmon.cpp | |||
@@ -21,72 +21,72 @@ | |||
21 | 21 | ||
22 | #include "stabmon.h" | 22 | #include "stabmon.h" |
23 | 23 | ||
24 | #include <qpe/qcopenvelope_qws.h> | 24 | #include <qpe/qcopenvelope_qws.h> |
25 | 25 | ||
26 | #include <qfile.h> | 26 | #include <qfile.h> |
27 | #include <qcstring.h> | 27 | #include <qcstring.h> |
28 | 28 | ||
29 | #include <sys/stat.h> | 29 | #include <sys/stat.h> |
30 | #include <unistd.h> | 30 | #include <unistd.h> |
31 | #include <stdlib.h> | 31 | #include <stdlib.h> |
32 | 32 | ||
33 | SysFileMonitor::SysFileMonitor(QObject* parent) : | 33 | SysFileMonitor::SysFileMonitor(QObject* parent) : |
34 | QObject(parent) | 34 | QObject(parent) |
35 | { | 35 | { |
36 | startTimer(2000); | 36 | startTimer(2000); |
37 | } | 37 | } |
38 | 38 | ||
39 | const char * stab0 = "/var/run/stab"; | 39 | const char * stab0 = "/var/run/stab"; |
40 | const char * stab1 = "/var/state/pcmcia/stab"; | 40 | const char * stab1 = "/var/state/pcmcia/stab"; |
41 | const char * stab2 = "/var/lib/pcmcia/stab"; | 41 | const char * stab2 = "/var/lib/pcmcia/stab"; |
42 | 42 | ||
43 | void SysFileMonitor::timerEvent(QTimerEvent*) | 43 | void SysFileMonitor::timerEvent(QTimerEvent*) |
44 | { | 44 | { |
45 | struct stat s; | 45 | struct stat s; |
46 | 46 | ||
47 | static const char * tab [] = { | 47 | static const char * tab [] = { |
48 | stab0, | 48 | stab0, |
49 | stab1, | 49 | stab1, |
50 | stab2 | 50 | stab2 |
51 | }; | 51 | }; |
52 | static const int nstab = sizeof(tab)/sizeof(const char *); | 52 | static const int nstab = sizeof(tab)/sizeof(const char *); |
53 | static int last[nstab]; | 53 | static int last[nstab]; |
54 | 54 | ||
55 | bool ch = FALSE; | 55 | bool ch = FALSE; |
56 | for ( int i=0; i<nstab; i++ ) { | 56 | for ( int i=0; i<nstab; i++ ) { |
57 | if ( ::stat(tab[i], &s)==0 && (long)s.st_mtime != last[i] ) { | 57 | if ( ::stat(tab[i], &s)==0 && (long)s.st_mtime != last[i] ) { |
58 | last[i] = (long)s.st_mtime; | 58 | last[i] = (long)s.st_mtime; |
59 | ch=TRUE; | 59 | ch=TRUE; |
60 | } | 60 | } |
61 | if ( ch ) { | 61 | if ( ch ) { |
62 | QCopEnvelope("QPE/Card", "stabChanged()" ); | 62 | QCopEnvelope("QPE/Card", "stabChanged()" ); |
63 | break; | 63 | break; |
64 | } | 64 | } |
65 | } | 65 | } |
66 | 66 | ||
67 | // st_size is no use, it's 0 for /proc/mounts too. Read it all. | 67 | // st_size is no use, it's 0 for /proc/mounts too. Read it all. |
68 | static int mtabSize = 0; | 68 | static int mtabSize = 0; |
69 | QFile f( "/etc/mtab" ); | 69 | QFile f( "/proc/mounts" ); |
70 | if ( f.open(IO_ReadOnly) ) { | 70 | if ( f.open(IO_ReadOnly) ) { |
71 | #if 0 | 71 | #if 0 |
72 | // readAll does not work correctly on sequential devices (as eg. /proc files) | 72 | // readAll does not work correctly on sequential devices (as eg. /proc files) |
73 | QByteArray ba = f.readAll(); | 73 | QByteArray ba = f.readAll(); |
74 | if ( (int)ba.size() != mtabSize ) { | 74 | if ( (int)ba.size() != mtabSize ) { |
75 | mtabSize = (int)ba.size(); | 75 | mtabSize = (int)ba.size(); |
76 | QCopEnvelope("QPE/Card", "mtabChanged()" ); | 76 | QCopEnvelope("QPE/Card", "mtabChanged()" ); |
77 | } | 77 | } |
78 | #else | 78 | #else |
79 | QString s; | 79 | QString s; |
80 | while( !f.atEnd() ) { | 80 | while( !f.atEnd() ) { |
81 | QString tmp; | 81 | QString tmp; |
82 | f.readLine( tmp, 1024 ); | 82 | f.readLine( tmp, 1024 ); |
83 | s += tmp; | 83 | s += tmp; |
84 | } | 84 | } |
85 | if ( (int)s.length() != mtabSize ) { | 85 | if ( (int)s.length() != mtabSize ) { |
86 | mtabSize = (int)s.length(); | 86 | mtabSize = (int)s.length(); |
87 | QCopEnvelope("QPE/Card", "mtabChanged()" ); | 87 | QCopEnvelope("QPE/Card", "mtabChanged()" ); |
88 | } | 88 | } |
89 | #endif | 89 | #endif |
90 | } | 90 | } |
91 | } | 91 | } |
92 | 92 | ||