Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
03fa9124
Commit
03fa9124
authored
8 years ago
by
Tim Wickberg
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused function.
parent
8d6841d7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/net.c
+0
-23
0 additions, 23 deletions
src/common/net.c
with
0 additions
and
23 deletions
src/common/net.c
+
0
−
23
View file @
03fa9124
...
...
@@ -142,29 +142,6 @@ int net_accept_stream(int fd)
return
sd
;
}
int
readn
(
int
fd
,
void
*
buf
,
size_t
nbytes
)
{
int
n
=
0
;
char
*
pbuf
=
(
char
*
)
buf
;
size_t
nleft
=
nbytes
;
while
(
nleft
>
0
)
{
n
=
read
(
fd
,
(
void
*
)
pbuf
,
nleft
);
if
(
n
>
0
)
{
pbuf
+=
n
;
nleft
-=
n
;
}
else
if
(
n
==
0
)
/* EOF */
break
;
else
if
(
errno
==
EINTR
)
continue
;
else
{
debug
(
"read error: %m"
);
break
;
}
}
return
(
n
);
}
int
net_set_low_water
(
int
sock
,
socklen_t
size
)
{
if
(
setsockopt
(
sock
,
SOL_SOCKET
,
SO_RCVLOWAT
,
...
...
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