Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
b55b84bd
Commit
b55b84bd
authored
Jan 13, 2017
by
service
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile on Debian 8
parent
119450ab
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
7 additions
and
13 deletions
+7
-13
remote/exe/rs_remote_qcom/src/rs_remote_qcom.c
remote/exe/rs_remote_qcom/src/rs_remote_qcom.c
+1
-1
src/doc/prm/src/ra_advappl.cpp
src/doc/prm/src/ra_advappl.cpp
+1
-2
src/exe/rt_qmon/src/rt_qmon.c
src/exe/rt_qmon/src/rt_qmon.c
+1
-1
src/lib/rt/src/rt_gdh.h
src/lib/rt/src/rt_gdh.h
+0
-2
src/lib/rt/src/rt_mh_appl.h
src/lib/rt/src/rt_mh_appl.h
+0
-2
src/lib/rt/src/rt_qcom.h
src/lib/rt/src/rt_qcom.h
+0
-2
src/tools/bld/src/os_linux/ld_trace_to_d.awk
src/tools/bld/src/os_linux/ld_trace_to_d.awk
+3
-3
xtt/exe/rt_videomgm/src/rt_videomgm.h
xtt/exe/rt_videomgm/src/rt_videomgm.h
+1
-0
No files found.
remote/exe/rs_remote_qcom/src/rs_remote_qcom.c
View file @
b55b84bd
...
...
@@ -116,7 +116,7 @@ unsigned int qcom_receive()
if
(
debug
)
printf
(
"Received message %d
\n
"
,
get
.
size
);
switch
(
get
.
type
.
b
)
{
switch
(
(
int
)
get
.
type
.
b
)
{
case
remote_cMsgClass
:
{
search_remtrans
=
true
;
...
...
src/doc/prm/src/ra_advappl.cpp
View file @
b55b84bd
...
...
@@ -7,8 +7,7 @@
/*@{*/
/** @defgroup rt_ex Application examples
* @ingroup applex
/** @ingroup rt_ex
* @{
*/
#include "pwr.h"
...
...
src/exe/rt_qmon/src/rt_qmon.c
View file @
b55b84bd
...
...
@@ -2399,7 +2399,7 @@ action_thread ()
msg
=
qcom_Get
(
&
sts
,
&
l
.
action_qid
,
&
get
,
qcom_cTmoEternal
);
if
(
ODD
(
sts
))
{
switch
(
get
.
type
.
b
)
{
switch
(
(
int
)
get
.
type
.
b
)
{
case
qmon_cMsgClassAction
:
{
switch
(
get
.
type
.
s
)
{
case
qmon_eMsgTypeAction_NodeActive
:
...
...
src/lib/rt/src/rt_gdh.h
View file @
b55b84bd
...
...
@@ -71,7 +71,6 @@ typedef pwr_tDlid gdh_tDlid;
typedef
pwr_tDlid
DLID
;
/** @defgroup DS Gdh Data Structures
* @ingroup GDH
* @{
*/
...
...
@@ -175,7 +174,6 @@ typedef struct {
/** @} */
/**
* @defgroup GDHFC Gdh Functions
* @ingroup GDH
* @{
*/
...
...
src/lib/rt/src/rt_mh_appl.h
View file @
b55b84bd
...
...
@@ -64,7 +64,6 @@ extern "C" {
/** @defgroup MSGH_DS MhAppl Data Structures
* @ingroup MSGH
* @{
*/
...
...
@@ -135,7 +134,6 @@ struct mhs_ApplMessage {
/**@}*/
/** @defgroup MSGH_FC MhAppl Functions
* @ingroup MSGH
* @{
*/
...
...
src/lib/rt/src/rt_qcom.h
View file @
b55b84bd
...
...
@@ -105,7 +105,6 @@ extern "C"
#define qcom_cImonAction (1<<31 | 108)
/** @defgroup QCOM_DS Qcom Data Structures
* @ingroup QCOM
* @{
*/
...
...
@@ -268,7 +267,6 @@ typedef struct {
/** @} */
/** @defgroup QCOM_FC Qcom Functions
* @ingroup QCOM
* @{
*/
...
...
src/tools/bld/src/os_linux/ld_trace_to_d.awk
View file @
b55b84bd
...
...
@@ -8,9 +8,9 @@ BEGIN {
}
else
{
gsub
(
"\(/"
,
"/"
);
if
(
match
(
$0
,
"\)"
))
{
gsub
(
"\)"
,
"("
);
gsub
(
"\
\
(/"
,
"/"
);
if
(
match
(
$0
,
"\
\
)"
))
{
gsub
(
"\
\
)"
,
"("
);
printf
(
"%s) \\\n"
,
$0
);
}
else
...
...
xtt/exe/rt_videomgm/src/rt_videomgm.h
View file @
b55b84bd
...
...
@@ -115,6 +115,7 @@ class XttVideoMgm {
vector
<
VideoMgmCamera
>
m_camera
;
XttVideoMgm
()
:
m_camera_cnt
(
0
),
m_scantime
(
0.5
),
m_op
(
0
)
{}
virtual
~
XttVideoMgm
()
{}
int
cinit
();
void
cscan
();
void
configure_layout
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment