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
b28dd174
Commit
b28dd174
authored
24 years ago
by
Fredrik Hübinette (Hubbe)
Browse files
Options
Downloads
Patches
Plain Diff
comment added
Rev: src/interpret.h:1.50
parent
06220895
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interpret.h
+12
-1
12 additions, 1 deletion
src/interpret.h
with
12 additions
and
1 deletion
src/interpret.h
+
12
−
1
View file @
b28dd174
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
\*/
\*/
/*
/*
* $Id: interpret.h,v 1.
49
2000/07/07 01:2
4:1
4 hubbe Exp $
* $Id: interpret.h,v 1.
50
2000/07/07 0
3:0
1:24 hubbe Exp $
*/
*/
#ifndef INTERPRET_H
#ifndef INTERPRET_H
#define INTERPRET_H
#define INTERPRET_H
...
@@ -244,6 +244,17 @@ struct callback;
...
@@ -244,6 +244,17 @@ struct callback;
extern
struct
callback_list
evaluator_callbacks
;
extern
struct
callback_list
evaluator_callbacks
;
extern
void
call_callback
(
struct
callback_list
*
,
void
*
);
extern
void
call_callback
(
struct
callback_list
*
,
void
*
);
/* Things to try:
* we could reduce thread swapping to a pointer operation if
* we do something like:
* #define Pike_interpreter (*Pike_interpreter_pointer)
*
* Since global variables are usually accessed through indirection
* anyways, it might not make any speed differance.
*
* The above define could also be used to facilitate dynamic loading
* on Win32..
*/
extern
struct
Pike_interpreter
Pike_interpreter
;
extern
struct
Pike_interpreter
Pike_interpreter
;
#define Pike_sp Pike_interpreter.stack_pointer
#define Pike_sp Pike_interpreter.stack_pointer
...
...
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