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
52c286e9
Commit
52c286e9
authored
25 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Added prototype.
Rev: src/callback.h:1.9 Rev: src/object.h:1.30
parent
67f0b55e
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/callback.h
+3
-1
3 additions, 1 deletion
src/callback.h
src/object.h
+3
-1
3 additions, 1 deletion
src/object.h
with
6 additions
and
2 deletions
src/callback.h
+
3
−
1
View file @
52c286e9
...
...
@@ -5,7 +5,7 @@
\*/
/*
* $Id: callback.h,v 1.
8
1999/0
5/02 08:11:34 h
ubb
e
Exp $
* $Id: callback.h,v 1.
9
1999/0
9/25 23:49:48 gr
ubb
a
Exp $
*/
#ifndef CALLBACK_H
#define CALLBACK_H
...
...
@@ -24,8 +24,10 @@ extern struct callback_list fork_child_callback;
typedef
void
(
*
callback_func
)(
struct
callback
*
,
void
*
,
void
*
);
#include
"block_alloc_h.h"
/* Prototypes begin here */
struct
callback
;
BLOCK_ALLOC
(
callback
,
CALLBACK_CHUNK
)
void
call_callback
(
struct
callback_list
*
lst
,
void
*
arg
);
struct
callback
*
debug_add_to_callback
(
struct
callback_list
*
lst
,
callback_func
call
,
...
...
This diff is collapsed.
Click to expand it.
src/object.h
+
3
−
1
View file @
52c286e9
...
...
@@ -5,7 +5,7 @@
\*/
/*
* $Id: object.h,v 1.
29
1999/09/
18 09:21:24 h
ubb
e
Exp $
* $Id: object.h,v 1.
30
1999/09/
25 23:50:56 gr
ubb
a
Exp $
*/
#ifndef OBJECT_H
#define OBJECT_H
...
...
@@ -46,6 +46,7 @@ extern struct program *magic_set_index_program;
#define this_object() (add_ref(fp->current_object), fp->current_object)
#include
"block_alloc_h.h"
/* Prototypes begin here */
struct
object
*
low_clone
(
struct
program
*
p
);
void
call_c_initializers
(
struct
object
*
o
);
...
...
@@ -57,6 +58,7 @@ struct object *parent_clone_object(struct program *p,
int
args
);
struct
object
*
get_master
(
void
);
struct
object
*
debug_master
(
void
);
PTR_HASH_ALLOC
(
destroy_called_mark
,
128
)
void
destruct
(
struct
object
*
o
);
void
destruct_objects_to_destruct
(
void
);
void
really_free_object
(
struct
object
*
o
);
...
...
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