Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
d2876e9d
Commit
d2876e9d
authored
23 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Output semaphore is created immediately after socket descriptor is read.
parent
58117737
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xtrn/sdk/xsdk.c
+28
-25
28 additions, 25 deletions
xtrn/sdk/xsdk.c
with
28 additions
and
25 deletions
xtrn/sdk/xsdk.c
+
28
−
25
View file @
d2876e9d
...
...
@@ -1875,6 +1875,23 @@ void initdata(void)
str
[
0
]
=
0
;
fgets
(
str
,
81
,
stream
);
client_socket
=
atoi
(
str
);
if
(
client_socket
!=
INVALID_SOCKET
)
{
#ifdef _WIN32
output_sem
=
CreateEvent
(
NULL
// pointer to security attributes
,
TRUE
// flag for manual-reset event
,
FALSE
// flag for initial state
,
NULL
// pointer to event-object name
);
if
(
output_sem
==
NULL
)
{
printf
(
"
\r\n\7
Error %d creating output_event
\r\n
"
,
GetLastError
());
exit
(
1
);
}
#endif
_beginthread
(
output_thread
,
0
,
NULL
);
}
#endif
fclose
(
stream
);
...
...
@@ -1883,15 +1900,16 @@ void initdata(void)
if
(
fexist
(
str
))
{
if
((
stream
=
fopen
(
str
,
"rt"
))
==
NULL
)
{
printf
(
"Can't open %s
\n
"
,
str
);
exit
(
1
);
}
exit
(
1
);
}
fgets
(
tmp
,
81
,
stream
);
/* so get MSR address from file */
msr
=
(
uint
FAR16
*
)
atol
(
tmp
);
fclose
(
stream
);
remove
(
str
);
}
remove
(
str
);
}
starttime
=
time
(
NULL
);
/* initialize start time stamp */
wordwrap
[
0
]
=
0
;
/* set wordwrap to null */
attr
(
LIGHTGRAY
);
/* initialize color and curatr to plain */
mnehigh
=
LIGHTGRAY
|
HIGH
;
/* mnemonics highlight color */
mnelow
=
GREEN
;
/* mnemonics normal text color */
sec_warn
=
180
;
/* seconds till inactivity warning */
...
...
@@ -1904,13 +1922,15 @@ void initdata(void)
sprintf
(
str
,
"%s%s"
,
ctrl_dir
,
"NODE.DAB"
);
if
((
nodefile
=
sopen
(
str
,
O_BINARY
|
O_RDWR
,
SH_DENYNO
))
==-
1
)
{
bprintf
(
"
\r\n\7
Error opening %s
\r\n
"
,
str
);
exit
(
1
);
}
printf
(
"
\r\n\7
Error opening %s
\r\n
"
,
str
);
exit
(
1
);
}
sprintf
(
str
,
"%sUSER
\\
NAME.DAT"
,
data_dir
);
if
((
i
=
nopen
(
str
,
O_RDONLY
))
==-
1
)
{
printf
(
"
\r\n\7
Error opening %s
\r\n
"
,
str
);
exit
(
1
);
}
exit
(
1
);
}
memset
(
str
,
0
,
30
);
read
(
i
,
str
,
26
);
close
(
i
);
...
...
@@ -1923,31 +1943,14 @@ void initdata(void)
_termios_setup
();
#endif
#ifndef __16BIT__
if
(
client_socket
!=
INVALID_SOCKET
)
{
#ifdef _WIN32
output_sem
=
CreateEvent
(
NULL
// pointer to security attributes
,
TRUE
// flag for manual-reset event
,
FALSE
// flag for initial state
,
NULL
// pointer to event-object name
);
if
(
output_sem
==
NULL
)
{
printf
(
"
\r\n\7
Error %d creating output_event
\r\n
"
,
GetLastError
());
exit
(
1
);
}
#endif
_beginthread
(
output_thread
,
0
,
NULL
);
#endif
}
if
(
xsdk_mode
&
XSDK_MODE_NOCONSOLE
)
{
con_fp
=
NULL
;
#ifdef _WIN32
FreeConsole
();
#endif
}
attr
(
LIGHTGRAY
);
/* initialize color and curatr to plain */
}
/****************************************************************************/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment