Skip to content
Snippets Groups Projects
Commit 4d5f1c16 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

Use Pd-Vanilla values for BYTESPERPING

parent 4d62bb92
No related branches found
No related tags found
No related merge requests found
...@@ -588,8 +588,8 @@ void sys_closesocket(int fd) ...@@ -588,8 +588,8 @@ void sys_closesocket(int fd)
/* ---------------------- sending messages to the GUI ------------------ */ /* ---------------------- sending messages to the GUI ------------------ */
#define GUI_ALLOCCHUNK 8192 #define GUI_ALLOCCHUNK 8192
#define GUI_UPDATESLICE 512 /* how much we try to do in one idle period */ #define GUI_UPDATESLICE 512 /* how much we try to do in one idle period */
//#define GUI_BYTESPERPING 1024 /* how much we send up per ping */ #define GUI_BYTESPERPING 1024 /* how much we send up per ping */
#define GUI_BYTESPERPING 0x7fffffff /* as per Miller's suggestion to disable the flow control */ //#define GUI_BYTESPERPING 0x7fffffff /* as per Miller's suggestion to disable the flow control */
typedef struct _guiqueue typedef struct _guiqueue
{ {
...@@ -1288,7 +1288,10 @@ int sys_startgui(const char *guidir) ...@@ -1288,7 +1288,10 @@ int sys_startgui(const char *guidir)
sprintf(cmdbuf, sprintf(cmdbuf,
"%s/nw/nw %s %d localhost %s\n", "%s/nw/nw %s %d localhost %s\n",
guidir, guidir, portno, guidir,
guidir,
// "/home/user/pd-nw/pd/nw",
portno,
(sys_k12_mode ? "pd-l2ork-k12" : "pd-l2ork")); (sys_k12_mode ? "pd-l2ork-k12" : "pd-l2ork"));
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment