Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/98c68ed23307be6ee440ae9e7cc15dd4218bfb16
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/98c68ed23307be6ee440ae9e7cc15dd4218bfb16
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/98c68ed23307be6ee440ae9e7cc15dd4218bfb16

The branch, dsilvers/monkey has been created
        at  98c68ed23307be6ee440ae9e7cc15dd4218bfb16 (commit)

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=98c68ed23307be6ee440ae9e7cc15dd4218bfb16
commit 98c68ed23307be6ee440ae9e7cc15dd4218bfb16
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Include time in GENERIC POLL TIMED

diff --git a/docs/using-monkey.md b/docs/using-monkey.md
index 33e5042..53f912e 100644
--- a/docs/using-monkey.md
+++ b/docs/using-monkey.md
@@ -143,9 +143,12 @@ Responses
     a window.
 
   GENERIC POLL BLOCKING
+  GENERIC POLL TIMED nnnn
     Monkey reached a point where it could sleep waiting for
     commands or scheduled timeouts.  No fetches nor redraws
-    were pending.
+    were pending.  If there are no timeouts or other pending
+    jobs then this will be a BLOCKING poll, otherwise the number
+    given is in milliseconds.
 
   Window messages
   ---------------
diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c
index 0059ff0..716d1ae 100644
--- a/frontends/monkey/main.c
+++ b/frontends/monkey/main.c
@@ -287,7 +287,7 @@ static void monkey_run(void)
 
     default:
       LOG("Iterate non-blocking");
-      fprintf(stdout, "GENERIC POLL TIMED\n");
+      fprintf(stdout, "GENERIC POLL TIMED %d\n", schedtm);
       tv.tv_sec = schedtm / 1000; /* miliseconds to seconds */
       tv.tv_usec = (schedtm % 1000) * 1000; /* remainder to microseconds */
       timeout = &tv;


-----------------------------------------------------------------------


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to