diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-05 02:32:35 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-10-05 02:32:35 +0200 |
commit | 8b6e95de7326382f75e1d1ee1069d39f774d5299 (patch) | |
tree | 4749ca582b05104389709b756efbf1087d7665c6 /src/gdisp/gdisp.c | |
parent | a370394dbb0b5bf2ae1fbb2838b8b09956bfe38e (diff) | |
download | uGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.tar.gz uGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.tar.bz2 uGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.zip |
added thread priorities to gfxconf.h
Diffstat (limited to 'src/gdisp/gdisp.c')
-rw-r--r-- | src/gdisp/gdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c index 22773908..54ab59a5 100644 --- a/src/gdisp/gdisp.c +++ b/src/gdisp/gdisp.c @@ -123,7 +123,7 @@ gfxMutexInit(&gdispMsgsMutex); gfxSemInit(&gdispMsgsSem, GDISP_QUEUE_SIZE, GDISP_QUEUE_SIZE); - hth = gfxThreadCreate(waGDISPThread, sizeof(waGDISPThread), NORMAL_PRIORITY, GDISPThreadHandler, NULL); + hth = gfxThreadCreate(waGDISPThread, sizeof(waGDISPThread), GDISP_PRIORITY, GDISPThreadHandler, NULL); if (hth) gfxThreadClose(hth); /* Initialise driver - synchronous */ |