You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/12/31 16:05:54 UTC

[incubator-nuttx-apps] branch master updated: include/system/nx: include mqueue.h explicitly

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new ee3787e  include/system/nx: include mqueue.h explicitly
ee3787e is described below

commit ee3787e4a0dd99ae3e9b0b8c986ae917bf79a434
Author: ligd <li...@xiaomi.com>
AuthorDate: Thu Dec 31 17:09:14 2020 +0800

    include/system/nx: include mqueue.h explicitly
    
    Change-Id: I95407d435e60a94946ca22ec0693939b12424e7f
    Signed-off-by: ligd <li...@xiaomi.com>
---
 include/system/nxlooper.h   | 4 ++++
 include/system/nxplayer.h   | 4 ++++
 include/system/nxrecorder.h | 4 ++++
 3 files changed, 12 insertions(+)

diff --git a/include/system/nxlooper.h b/include/system/nxlooper.h
index b0018d3..f9a922c 100644
--- a/include/system/nxlooper.h
+++ b/include/system/nxlooper.h
@@ -27,6 +27,10 @@
 
 #include <nuttx/config.h>
 
+#include <mqueue.h>
+#include <pthread.h>
+#include <semaphore.h>
+
 /****************************************************************************
  * Pre-processor Definitions
  ****************************************************************************/
diff --git a/include/system/nxplayer.h b/include/system/nxplayer.h
index 8f0493b..9374023 100644
--- a/include/system/nxplayer.h
+++ b/include/system/nxplayer.h
@@ -46,6 +46,10 @@
 
 #include <nuttx/config.h>
 
+#include <mqueue.h>
+#include <pthread.h>
+#include <semaphore.h>
+
 /****************************************************************************
  * Pre-processor Definitions
  ****************************************************************************/
diff --git a/include/system/nxrecorder.h b/include/system/nxrecorder.h
index 7a4ad39..b632c4a 100644
--- a/include/system/nxrecorder.h
+++ b/include/system/nxrecorder.h
@@ -27,6 +27,10 @@
 
 #include <nuttx/config.h>
 
+#include <mqueue.h>
+#include <pthread.h>
+#include <semaphore.h>
+
 /****************************************************************************
  * Pre-processor Definitions
  ****************************************************************************/