Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: src/views/unix/skia_unix.cpp

Issue 17275003: use select() so we can wait for XEvents or our timer (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/views/unix/SkOSWindow_Unix.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/views/unix/skia_unix.cpp
diff --git a/src/views/unix/skia_unix.cpp b/src/views/unix/skia_unix.cpp
index 108e9ac20688e05ccdfe278990b0ba4d50d2f0b5..d77a8161fbd8b59d787f08ad94ac44cc9cf491b0 100644
--- a/src/views/unix/skia_unix.cpp
+++ b/src/views/unix/skia_unix.cpp
@@ -18,14 +18,7 @@
SkOSWindow* gWindow;
-static void catch_alarm(int sig)
-{
- SkEvent::ServiceQueueTimer();
-}
-
int main(int argc, char** argv){
- signal(SIGALRM, catch_alarm);
-
gWindow = create_sk_window(NULL, argc, argv);
// drain any events that occurred before gWindow was assigned.
@@ -43,20 +36,4 @@ int main(int argc, char** argv){
// SkEvent handlers
-void SkEvent::SignalNonEmptyQueue()
-{
- if (gWindow) {
- gWindow->post_linuxevent();
- }
-}
-
-void SkEvent::SignalQueueTimer(SkMSec delay)
-{
- itimerval newTimer;
- newTimer.it_interval.tv_sec = 0;
- newTimer.it_interval.tv_usec = 0;
- newTimer.it_value.tv_sec = 0;
- newTimer.it_value.tv_usec = delay * 1000;
- setitimer(ITIMER_REAL, &newTimer, NULL);
-}
« no previous file with comments | « src/views/unix/SkOSWindow_Unix.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698