diff options
| author | Khem Raj <raj.khem@gmail.com> | 2022-09-02 18:50:55 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-09-05 22:49:35 -0700 |
| commit | e1eb39b36a93cb3603ece4a3e56e229d04473c63 (patch) | |
| tree | e6117c798b985bec607205003763a80d2b7e2b4a | |
| parent | 538612afdc6186535925bfbb57cf51d72e677c83 (diff) | |
| download | meta-openembedded-e1eb39b36a93cb3603ece4a3e56e229d04473c63.tar.gz | |
directfb-examples: Fix pthread_t assignment type
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-graphics/directfb/directfb-examples/0001-spacedream-Add-typecast-to-pthread_t-in-assignment.patch | 39 | ||||
| -rw-r--r-- | meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb | 1 |
2 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/directfb/directfb-examples/0001-spacedream-Add-typecast-to-pthread_t-in-assignment.patch b/meta-oe/recipes-graphics/directfb/directfb-examples/0001-spacedream-Add-typecast-to-pthread_t-in-assignment.patch new file mode 100644 index 0000000000..f40b7f144d --- /dev/null +++ b/meta-oe/recipes-graphics/directfb/directfb-examples/0001-spacedream-Add-typecast-to-pthread_t-in-assignment.patch | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | From 85a30903ea3ba4232379bbbcb54960307d5a2da0 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Fri, 2 Sep 2022 18:49:03 -0700 | ||
| 4 | Subject: [PATCH] spacedream: Add typecast to pthread_t in assignment | ||
| 5 | |||
| 6 | render_loop_thread is of type pthread_t, therefore -1 which is int can | ||
| 7 | not be assigned to it. Do the needed typecast conversion | ||
| 8 | |||
| 9 | Upstream-Status: Pending | ||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | src/spacedream/main.c | 4 ++-- | ||
| 13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/src/spacedream/main.c b/src/spacedream/main.c | ||
| 16 | index 430800f..8e1887c 100644 | ||
| 17 | --- a/src/spacedream/main.c | ||
| 18 | +++ b/src/spacedream/main.c | ||
| 19 | @@ -205,7 +205,7 @@ void unload_stars() | ||
| 20 | int main( int argc, char *argv[] ) | ||
| 21 | { | ||
| 22 | int quit = 0; | ||
| 23 | - pthread_t render_loop_thread = -1; | ||
| 24 | + pthread_t render_loop_thread = (pthread_t)-1; | ||
| 25 | |||
| 26 | IDirectFBSurface *primary; | ||
| 27 | IDirectFBEventBuffer *buffer; | ||
| 28 | @@ -344,7 +344,7 @@ int main( int argc, char *argv[] ) | ||
| 29 | pthread_cancel( render_loop_thread ); | ||
| 30 | pthread_mutex_unlock( &render_start ); | ||
| 31 | pthread_join( render_loop_thread, NULL ); | ||
| 32 | - render_loop_thread = -1; | ||
| 33 | + render_loop_thread = (pthread_t)-1; | ||
| 34 | |||
| 35 | |||
| 36 | unload_stars(); | ||
| 37 | -- | ||
| 38 | 2.37.3 | ||
| 39 | |||
diff --git a/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb b/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb index 7907c5c0da..398e339482 100644 --- a/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb +++ b/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb | |||
| @@ -9,6 +9,7 @@ LICENSE = "MIT" | |||
| 9 | SRC_URI = " \ | 9 | SRC_URI = " \ |
| 10 | http://downloads.yoctoproject.org/mirror/sources/DirectFB-examples-${PV}.tar.gz \ | 10 | http://downloads.yoctoproject.org/mirror/sources/DirectFB-examples-${PV}.tar.gz \ |
| 11 | file://configure.in-Fix-string-argument-syntax.patch \ | 11 | file://configure.in-Fix-string-argument-syntax.patch \ |
| 12 | file://0001-spacedream-Add-typecast-to-pthread_t-in-assignment.patch \ | ||
| 12 | " | 13 | " |
| 13 | 14 | ||
| 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f" | 15 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f" |
