diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-06-23 12:56:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-06-23 12:56:22 (GMT) |
commit | e966cabc8dc8b12ec4047c2f84237745740182fb (patch) | |
tree | a6a1b6b304987f3ca967da49b3271bc3909ae04c /generic/tclInt.h | |
parent | a04a01603dff351c666f4eee9ab2a166ed28a7a1 (diff) | |
parent | 501954d5aaf9401f977885fd340298baacde61a2 (diff) | |
download | tcl-e966cabc8dc8b12ec4047c2f84237745740182fb.zip tcl-e966cabc8dc8b12ec4047c2f84237745740182fb.tar.gz tcl-e966cabc8dc8b12ec4047c2f84237745740182fb.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c03f53b..2db2c50 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1480,6 +1480,11 @@ typedef struct CoroutineData { int nargs; /* Number of args required for resuming this * coroutine; -2 means "0 or 1" (default), -1 * means "any" */ + Tcl_Obj *yieldPtr; /* The command to yield to. Stored here in + * order to reset splice point in + * TclNRCoroutineActivateCallback if the + * coroutine is busy. + */ } CoroutineData; typedef struct ExecEnv { |