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
e386c880
Commit
e386c880
authored
Feb 22, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
1f95f56a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
src/changelog.txt
src/changelog.txt
+2
-1
src/exe/rt_statussrv/src/rt_statussrv.cpp
src/exe/rt_statussrv/src/rt_statussrv.cpp
+6
-1
No files found.
src/changelog.txt
View file @
e386c880
...
...
@@ -63,4 +63,5 @@
080114 cs doc New chapter Class Editor in Designer's Guide.
080118 cs trace Object description viewed as tooltip in trace. Also $PlcMain and $PlcFo translated and viewed in tooltip.
080121 cs pwrb MoreText added to DSup, ASup and CycleSup, and to mh protocol.
080122 cs pwrb Attributes PresMinLimit and PresMaxLimit added to Ii and Io.
\ No newline at end of file
080122 cs pwrb Attributes PresMinLimit and PresMaxLimit added to Ii and Io.
080206 cs statussrv Loopback address used for local node.
\ No newline at end of file
src/exe/rt_statussrv/src/rt_statussrv.cpp
View file @
e386c880
/*
* Proview $Id: rt_statussrv.cpp,v 1.
6 2007-06-29 12:50:44
claes Exp $
* Proview $Id: rt_statussrv.cpp,v 1.
7 2008-02-22 09:17:49
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -61,6 +61,7 @@ class status_server {
static
status_server
*
statussrv
;
static
void
*
statussrv_cyclic
(
void
*
arg
);
static
struct
soap
*
statussrv_soap
=
0
;
int
main
(
int
argc
,
char
*
argv
[])
...
...
@@ -184,6 +185,8 @@ int main( int argc, char *argv[])
errh_SetStatus
(
PWR__SRUN
);
soap_init
(
&
soap
);
statussrv_soap
=
&
soap
;
for
(
int
i
=
0
;
i
<
restarts
+
1
;
i
++
)
{
m
=
soap_bind
(
&
soap
,
NULL
,
18084
,
100
);
if
(
m
<
0
)
{
...
...
@@ -248,6 +251,8 @@ static void *statussrv_cyclic( void *arg)
}
else
if
(
new_event
.
b
.
swapDone
)
{
errh_SetStatus
(
PWR__SRUN
);
}
else
if
(
new_event
.
b
.
terminate
)
{
// if ( statussrv_soap)
// soap_done( statussrv_soap);
exit
(
0
);
}
}
...
...
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