pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2002-01-07
2002-01-07 22:16:25 by Martin Nilsson <mani@lysator.liu.se>
b1d7d9a6893b372570e712650f7213c2dd309706 (
11
lines) (+
7
/-
4
)
[
Show
|
Annotate
]
Branch:
7.9
Autodoc for asyncp.
Rev: lib/master.pike.in:1.187
1:
/* -*- Pike -*- *
-
* $Id: master.pike.in,v 1.
186
2001
/
12
/
29
22:
53
:
23
nilsson Exp $
+
* $Id: master.pike.in,v 1.
187
2002
/
01
/
07
22:
16
:
25
nilsson Exp $
* * Master-file for Pike. *
1452:
string _pike_file_name; string _master_file_name;
-
//
flag.
Gets set to 1 if we're in async-mode (script->main() returned <0)
-
private int _async=0;
+
// Gets set to 1 if we're in async-mode (script->main() returned <0)
+
private int
(0..1)
_async=0;
-
int asyncp() {
+
//! Returns 1 if we´re in async-mode, e.g. if the main method has
+
//! returned a negative number.
+
int
(0..1)
asyncp() {
return _async; }