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
52e0752e
Commit
52e0752e
authored
28 years ago
by
Fredrik Hübinette (Hubbe)
Browse files
Options
Downloads
Patches
Plain Diff
backend slightly rewritten
Rev: src/backend.c:1.5 Rev: src/backend.h:1.5
parent
f5f7b15c
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
src/backend.c
+28
-35
28 additions, 35 deletions
src/backend.c
src/backend.h
+12
-24
12 additions, 24 deletions
src/backend.h
with
40 additions
and
59 deletions
src/backend.c
+
28
−
35
View file @
52e0752e
...
...
@@ -13,7 +13,6 @@
#include
"object.h"
#include
"types.h"
#include
"error.h"
#include
"call_out.h"
#include
"fd_control.h"
#include
"main.h"
#include
"callback.h"
...
...
@@ -33,19 +32,22 @@ struct selectors
static
struct
selectors
selectors
;
callback
read_callback
[
MAX_OPEN_FILEDESCRIPTORS
];
file_
callback
read_callback
[
MAX_OPEN_FILEDESCRIPTORS
];
void
*
read_callback_data
[
MAX_OPEN_FILEDESCRIPTORS
];
callback
write_callback
[
MAX_OPEN_FILEDESCRIPTORS
];
file_
callback
write_callback
[
MAX_OPEN_FILEDESCRIPTORS
];
void
*
write_callback_data
[
MAX_OPEN_FILEDESCRIPTORS
];
static
int
max_fd
;
time_t
current_time
;
struct
timeval
current_time
;
struct
timeval
next_timeout
;
static
struct
callback
_list
*
backend_callbacks
;
static
struct
callback
*
backend_callbacks
=
0
;
struct
callback_list
*
add_backend_callback
(
struct
array
*
a
)
struct
callback
*
add_backend_callback
(
callback_func
call
,
void
*
arg
,
callback_func
free_func
)
{
return
add_to_callback
_list
(
&
backend_callbacks
,
a
);
return
add_to_callback
(
&
backend_callbacks
,
call
,
arg
,
free_func
);
}
void
init_backend
()
...
...
@@ -54,7 +56,7 @@ void init_backend()
FD_ZERO
(
&
selectors
.
write
);
}
void
set_read_callback
(
int
fd
,
callback
cb
,
void
*
data
)
void
set_read_callback
(
int
fd
,
file_
callback
cb
,
void
*
data
)
{
#ifdef DEBUG
if
(
fd
<
0
||
fd
>=
MAX_OPEN_FILEDESCRIPTORS
)
...
...
@@ -83,7 +85,7 @@ void set_read_callback(int fd,callback cb,void *data)
}
}
void
set_write_callback
(
int
fd
,
callback
cb
,
void
*
data
)
void
set_write_callback
(
int
fd
,
file_
callback
cb
,
void
*
data
)
{
#ifdef DEBUG
if
(
fd
<
0
||
fd
>=
MAX_OPEN_FILEDESCRIPTORS
)
...
...
@@ -112,7 +114,7 @@ void set_write_callback(int fd,callback cb,void *data)
}
}
callback
query_read_callback
(
int
fd
)
file_
callback
query_read_callback
(
int
fd
)
{
#ifdef DEBUG
if
(
fd
<
0
||
fd
>=
MAX_OPEN_FILEDESCRIPTORS
)
...
...
@@ -122,7 +124,7 @@ callback query_read_callback(int fd)
return
read_callback
[
fd
];
}
callback
query_write_callback
(
int
fd
)
file_
callback
query_write_callback
(
int
fd
)
{
#ifdef DEBUG
if
(
fd
<
0
||
fd
>=
MAX_OPEN_FILEDESCRIPTORS
)
...
...
@@ -168,7 +170,6 @@ void do_debug()
check_all_programs
();
verify_all_objects
();
verify_shared_strings_tables
();
verify_all_call_outs
();
}
#endif
...
...
@@ -176,7 +177,6 @@ void backend()
{
JMP_BUF
back
;
int
i
,
delay
;
struct
timeval
timeout
;
struct
selectors
sets
;
if
(
SETJMP
(
back
))
...
...
@@ -190,24 +190,26 @@ void backend()
while
(
first_object
)
{
delay
=
get_next_call_out
();
if
(
delay
)
{
delay
-=
get_current_time
();
if
(
delay
<
0
)
delay
=
0
;
}
else
{
delay
=
7
*
24
*
60
*
60
;
/* See you in a week */
}
timeout
.
tv_usec
=
0
;
timeout
.
tv_sec
=
delay
;
next_timeout
.
tv_usec
=
0
;
next_timeout
.
tv_sec
=
7
*
24
*
60
*
60
;
/* See you in a week */
my_add_timeval
(
&
next_timeout
,
&
current_time
);
call_callback
(
&
backend_callbacks
);
sets
=
selectors
;
i
=
select
(
max_fd
+
1
,
&
sets
.
read
,
&
sets
.
write
,
0
,
&
timeout
);
alloca
(
0
);
/* Do garbage collect */
#ifdef DEBUG
if
(
d_flag
>
1
)
do_debug
();
#endif
current_time
=
get_current_time
();
check_signals
();
GETTIMEOFDAY
(
&
current_time
);
my_subtract_timeval
(
&
next_timeout
,
&
current_time
);
i
=
select
(
max_fd
+
1
,
&
sets
.
read
,
&
sets
.
write
,
0
,
&
next_timeout
);
GETTIMEOFDAY
(
&
current_time
);
check_signals
();
if
(
i
>=
0
)
{
for
(
i
=
0
;
i
<
max_fd
+
1
;
i
++
)
...
...
@@ -234,15 +236,6 @@ void backend()
}
}
do_call_outs
();
call_callback_list
(
&
backend_callbacks
);
alloca
(
0
);
/* Do garbage collect */
#ifdef DEBUG
if
(
d_flag
>
1
)
do_debug
();
#endif
}
UNSETJMP
(
back
);
...
...
This diff is collapsed.
Click to expand it.
src/backend.h
+
12
−
24
View file @
52e0752e
...
...
@@ -7,35 +7,23 @@
#define BACKEND_H
#include
"global.h"
#include
"time_stuff.h"
#include
"callback.h"
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# if HAVE_TIME_H
# include <time.h>
# endif
# endif
#endif
#undef HAVE_SYS_TIME_H
#undef HAVE_TIME_H
#undef TIME_WITH_SYS_TIME
extern
time_t
current_time
;
typedef
void
(
*
callback
)(
int
,
void
*
);
extern
struct
timeval
current_time
;
extern
struct
timeval
next_timeout
;
typedef
void
(
*
file_callback
)(
int
,
void
*
);
/* Prototypes begin here */
struct
selectors
;
struct
callback_list
*
add_backend_callback
(
struct
array
*
a
);
struct
callback
*
add_backend_callback
(
callback_func
call
,
void
*
arg
,
callback_func
free_func
);
void
init_backend
();
void
set_read_callback
(
int
fd
,
callback
cb
,
void
*
data
);
void
set_write_callback
(
int
fd
,
callback
cb
,
void
*
data
);
callback
query_read_callback
(
int
fd
);
callback
query_write_callback
(
int
fd
);
void
set_read_callback
(
int
fd
,
file_
callback
cb
,
void
*
data
);
void
set_write_callback
(
int
fd
,
file_
callback
cb
,
void
*
data
);
file_
callback
query_read_callback
(
int
fd
);
file_
callback
query_write_callback
(
int
fd
);
void
*
query_read_callback_data
(
int
fd
);
void
*
query_write_callback_data
(
int
fd
);
void
do_debug
();
...
...
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