mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
-allocate the buffer for the NamedPipeReader on Linux too
-use linux path as default in txtmode.cfg svn path=/trunk/; revision=28881
This commit is contained in:
parent
7e1ef16736
commit
7cc946b793
2 changed files with 4 additions and 2 deletions
|
@ -90,6 +90,8 @@ namespace System_
|
|||
else
|
||||
{
|
||||
cout << "NamedPipeReader::openPipe> successfully opened pipe" << endl;
|
||||
m_BufferLength = 100;
|
||||
m_Buffer = (char*)malloc(sizeof(char) * m_BufferLength);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -10,8 +10,8 @@ ROS_EMU_TYPE=qemu
|
|||
;
|
||||
; This variable sets the path to the emulator
|
||||
;
|
||||
ROS_EMU_PATH=E:\reactos\qemu\qemu.exe
|
||||
;ROS_EMU_PATH=/usr/bin/qemu
|
||||
;ROS_EMU_PATH=E:\reactos\qemu\qemu.exe
|
||||
ROS_EMU_PATH=/usr/bin/qemu
|
||||
|
||||
; ROS_HDD_IMAGE
|
||||
;
|
||||
|
|
Loading…
Reference in a new issue