Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CSEP551
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Krishna Vinnakota
CSEP551
Commits
d6d636aa
Commit
d6d636aa
authored
18 years ago
by
rsc
Browse files
Options
Downloads
Patches
Plain Diff
make setjmp fit on one page
parent
ab299eb3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setjmp.S
+6
-8
6 additions, 8 deletions
setjmp.S
with
6 additions
and
8 deletions
setjmp.S
+
6
−
8
View file @
d6d636aa
#
int
setjmp
(
struct
jmpbuf
*
jmp
)
;
#
int
setjmp
(
struct
jmpbuf
*
jmp
)
;
#
void
longjmp
(
struct
jmpbuf
*
jmp
)
;
#
void
longjmp
(
struct
jmpbuf
*
jmp
)
;
#
#
#
Setjmp
saves
its
stack
environment
in
jmp
#
Setjmp
saves
its
stack
environment
in
jmp
for
later
use
by
longjmp
.
#
for
later
use
by
longjmp
.
It
returns
0
.
#
It
returns
0
.
#
#
#
Longjmp
restores
the
environment
saved
by
#
Longjmp
restores
the
environment
saved
by
the
last
call
of
setjmp
.
#
the
last
call
of
setjmp
.
It
then
causes
#
It
then
causes
execution
to
continue
as
if
the
call
of
setjmp
#
execution
to
continue
as
if
the
call
of
setjmp
#
had
just
returned
1
.
#
had
just
returned
1
.
#
#
#
The
caller
of
setjmp
must
not
itself
have
#
The
caller
of
setjmp
must
not
itself
have
returned
in
the
interim
.
#
returned
in
the
interim
.
All
accessible
data
#
All
accessible
data
have
values
as
of
the
time
longjmp
was
called
.
#
have
values
as
of
the
time
longjmp
was
called
.
#
#
#
[
Description
,
but
not
code
,
borrowed
from
Plan
9
.
]
#
[
Description
,
but
not
code
,
borrowed
from
Plan
9
.
]
...
...
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