Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container registry
Model registry
Operate
Environments
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
pikelang
pike
Commits
3950eb23
Commit
3950eb23
authored
24 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Added missing prototype for debug_fd_stat().
Fixed prototype for debug_fd_accept(). Rev: src/fdlib.h:1.31
parent
0f91a65b
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/fdlib.h
+3
-2
3 additions, 2 deletions
src/fdlib.h
with
3 additions
and
2 deletions
src/fdlib.h
+
3
−
2
View file @
3950eb23
/*
/*
* $Id: fdlib.h,v 1.3
0
2000/0
6/27 15:11:53
grubba Exp $
* $Id: fdlib.h,v 1.3
1
2000/0
7/02 14:59:39
grubba Exp $
*/
*/
#ifndef FDLIB_H
#ifndef FDLIB_H
#define FDLIB_H
#define FDLIB_H
...
@@ -104,10 +104,11 @@ char *debug_fd_info(int fd);
...
@@ -104,10 +104,11 @@ char *debug_fd_info(int fd);
int
debug_fd_query_properties
(
int
fd
,
int
guess
);
int
debug_fd_query_properties
(
int
fd
,
int
guess
);
void
fd_init
();
void
fd_init
();
void
fd_exit
();
void
fd_exit
();
int
debug_fd_stat
(
char
*
file
,
struct
stat
*
buf
);
FD
debug_fd_open
(
char
*
file
,
int
open_mode
,
int
create_mode
);
FD
debug_fd_open
(
char
*
file
,
int
open_mode
,
int
create_mode
);
FD
debug_fd_socket
(
int
domain
,
int
type
,
int
proto
);
FD
debug_fd_socket
(
int
domain
,
int
type
,
int
proto
);
int
debug_fd_pipe
(
int
fds
[
2
]
DMALLOC_LINE_ARGS
);
int
debug_fd_pipe
(
int
fds
[
2
]
DMALLOC_LINE_ARGS
);
FD
debug_fd_accept
(
FD
fd
,
struct
sockaddr
*
addr
,
int
*
addrlen
);
FD
debug_fd_accept
(
FD
fd
,
struct
sockaddr
*
addr
,
ACCEPT_SIZE_T
*
addrlen
);
SOCKFUN2
(
bind
,
struct
sockaddr
*
,
int
)
SOCKFUN2
(
bind
,
struct
sockaddr
*
,
int
)
int
debug_fd_connect
(
FD
fd
,
struct
sockaddr
*
a
,
int
len
);
int
debug_fd_connect
(
FD
fd
,
struct
sockaddr
*
a
,
int
len
);
SOCKFUN4
(
getsockopt
,
int
,
int
,
void
*
,
int
*
)
SOCKFUN4
(
getsockopt
,
int
,
int
,
void
*
,
int
*
)
...
...
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