Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b962cd0b
Commit
b962cd0b
authored
Oct 06, 1994
by
Kresten Krab Thorup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delay eeing when unarchiving.
From-SVN: r8229
parent
9a9a996b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
gcc/objc/archive.c
+6
-1
No files found.
gcc/objc/archive.c
View file @
b962cd0b
...
...
@@ -1427,9 +1427,11 @@ static void __objc_finish_write_root_object(struct objc_typed_stream* stream)
static
void
__objc_finish_read_root_object
(
struct
objc_typed_stream
*
stream
)
{
node_ptr
node
;
struct
objc_list
*
free_list
;
SEL
awake_sel
=
sel_get_any_uid
(
"awake"
);
/* resolve object forward references */
free_list
=
list_cons
(
NULL
,
NULL
);
for
(
node
=
hash_next
(
stream
->
object_refs
,
NULL
);
node
;
node
=
hash_next
(
stream
->
object_refs
,
node
))
{
...
...
@@ -1439,10 +1441,13 @@ static void __objc_finish_read_root_object(struct objc_typed_stream* stream)
while
(
reflist
)
{
*
((
id
*
)
reflist
->
head
)
=
object
;
if
(
list_find
(
&
free_list
,
reflist
)
==
NULL
)
free_list
=
list_cons
(
reflist
,
free_list
);
reflist
=
reflist
->
tail
;
}
list_free
(
node
->
value
);
}
list_mapcar
(
free_list
,
free
);
list_free
(
free_list
);
/* empty object reference table */
hash_delete
(
stream
->
object_refs
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment