Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
pub
frama-c
Commits
eb44670c
Commit
eb44670c
authored
3 years ago
by
Loïc Correnson
Committed by
David Bühler
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] reducing polling & response latency
parent
81b7ef80
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ivette/src/frama-c/server.ts
+1
-1
1 addition, 1 deletion
ivette/src/frama-c/server.ts
src/plugins/server/server_socket.ml
+17
-13
17 additions, 13 deletions
src/plugins/server/server_socket.ml
with
18 additions
and
14 deletions
ivette/src/frama-c/server.ts
+
1
−
1
View file @
eb44670c
...
...
@@ -121,7 +121,7 @@ const pending = new Map<string, PendingRequest>();
let
process
:
ChildProcess
|
undefined
;
/** Polling timeout when server is busy. */
const
pollingTimeout
=
20
0
;
const
pollingTimeout
=
1
0
;
let
pollingTimer
:
NodeJS
.
Timeout
|
undefined
;
/** Killing timeout and timer for server process hard kill. */
...
...
This diff is collapsed.
Click to expand it.
src/plugins/server/server_socket.ml
+
17
−
13
View file @
eb44670c
...
...
@@ -67,19 +67,23 @@ let feed_bytes { sock ; rcv ; brcv } =
let
send_bytes
{
sock
;
snd
;
bsnd
}
=
try
(* snd buffer is only used locally *)
let
n
=
Buffer
.
length
bsnd
in
if
n
>
0
then
let
s
=
Bytes
.
length
snd
in
let
w
=
min
n
s
in
Buffer
.
blit
bsnd
0
snd
0
w
;
let
r
=
Unix
.
single_write
sock
snd
0
w
in
if
r
>
0
then
(* TODO[LC]: inefficient move. Requires a ring-buffer. *)
let
rest
=
Buffer
.
sub
bsnd
r
(
n
-
r
)
in
Buffer
.
reset
bsnd
;
Buffer
.
add_string
bsnd
rest
with
Unix
.
Unix_error
((
EAGAIN
|
EWOULDBLOCK
)
,_,_
)
->
()
while
true
do
(* snd buffer is only used locally *)
let
n
=
Buffer
.
length
bsnd
in
if
n
>
0
then
let
s
=
Bytes
.
length
snd
in
let
w
=
min
n
s
in
Buffer
.
blit
bsnd
0
snd
0
w
;
let
r
=
Unix
.
single_write
sock
snd
0
w
in
if
r
>
0
then
(* TODO[LC]: inefficient move. Requires a ring-buffer. *)
let
rest
=
Buffer
.
sub
bsnd
r
(
n
-
r
)
in
Buffer
.
reset
bsnd
;
Buffer
.
add_string
bsnd
rest
else
raise
Exit
else
raise
Exit
done
with
Exit
|
Unix
.
Unix_error
((
EAGAIN
|
EWOULDBLOCK
)
,_,_
)
->
()
(* -------------------------------------------------------------------------- *)
(* --- Data Chunks Encoding --- *)
...
...
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