netfs: Fix build for gcc4.
This commit is contained in:
@@ -2869,13 +2869,14 @@ ClientConnection::_NodeMonitoringProcessorEntry(void* data)
|
|||||||
return ((ClientConnection*)data)->_NodeMonitoringProcessor();
|
return ((ClientConnection*)data)->_NodeMonitoringProcessor();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// _NodeMonitoringProcessor
|
// _NodeMonitoringProcessor
|
||||||
int32
|
int32
|
||||||
ClientConnection::_NodeMonitoringProcessor()
|
ClientConnection::_NodeMonitoringProcessor()
|
||||||
{
|
{
|
||||||
while (!fClosed) {
|
while (!fClosed) {
|
||||||
// get the next request
|
// get the next request
|
||||||
NodeMonitoringRequest* request;
|
NodeMonitoringRequest* request = NULL;
|
||||||
status_t error = fNodeMonitoringEvents->Pop(&request);
|
status_t error = fNodeMonitoringEvents->Pop(&request);
|
||||||
|
|
||||||
// get a client connection reference
|
// get a client connection reference
|
||||||
@@ -2900,6 +2901,7 @@ ClientConnection::_NodeMonitoringProcessor()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// _PushNodeMonitoringEvent
|
// _PushNodeMonitoringEvent
|
||||||
//
|
//
|
||||||
// The caller must have a connection reference. Moreover the VolumeManager
|
// The caller must have a connection reference. Moreover the VolumeManager
|
||||||
|
|||||||
Reference in New Issue
Block a user