gcc 3 fix (no default args in implementation)
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5840 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -82,7 +82,7 @@ port_id PortLink::GetPort()
|
|||||||
return fSendPort;
|
return fSendPort;
|
||||||
}
|
}
|
||||||
|
|
||||||
status_t PortLink::Flush(bigtime_t timeout=B_INFINITE_TIMEOUT)
|
status_t PortLink::Flush(bigtime_t timeout)
|
||||||
{
|
{
|
||||||
status_t write_stat;
|
status_t write_stat;
|
||||||
|
|
||||||
@@ -101,7 +101,7 @@ status_t PortLink::Flush(bigtime_t timeout=B_INFINITE_TIMEOUT)
|
|||||||
return write_stat;
|
return write_stat;
|
||||||
}
|
}
|
||||||
|
|
||||||
status_t PortLink::FlushWithReply( PortMessage *msg,bigtime_t timeout=B_INFINITE_TIMEOUT )
|
status_t PortLink::FlushWithReply( PortMessage *msg,bigtime_t timeout )
|
||||||
{
|
{
|
||||||
if(!port_ok || !msg)
|
if(!port_ok || !msg)
|
||||||
return B_BAD_VALUE;
|
return B_BAD_VALUE;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
//extern BSession *main_session = NULL;
|
//extern BSession *main_session = NULL;
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
BSession::BSession(port_id receivePort, port_id sendPort, bool isPortLink = false)
|
BSession::BSession(port_id receivePort, port_id sendPort, bool isPortLink)
|
||||||
{
|
{
|
||||||
fSendPort = sendPort;
|
fSendPort = sendPort;
|
||||||
fReceivePort = receivePort;
|
fReceivePort = receivePort;
|
||||||
|
|||||||
Reference in New Issue
Block a user