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
80485a6d
Commit
80485a6d
authored
Jan 05, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename decls for vars renamed to _objc_alloc, _objc_dealloc,
_objc_realloc, _objc_copy, _objc_error. From-SVN: r3101
parent
e8f1efb2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
gcc/objc/objc.h
+13
-13
No files found.
gcc/objc/objc.h
View file @
80485a6d
...
...
@@ -316,33 +316,33 @@ typedef struct objc_super {
}
Super
,
*
Super_t
;
/*
* _
alloc points to the function, called through class_createInstance, used
* to allocate memory for new instances.
* _
objc_alloc points to the function, called through class_createInstance,
*
used
to allocate memory for new instances.
*/
extern
id
(
*
_alloc
)(
Class_t
);
extern
id
(
*
_
objc_
alloc
)(
Class_t
);
/*
* _dealloc points to the function, called through object_dispose, used to
* _
objc_
dealloc points to the function, called through object_dispose, used to
* free instances.
*/
extern
id
(
*
_dealloc
)(
id
);
extern
id
(
*
_
objc_
dealloc
)(
id
);
/*
* _realloc points to the function, called through object_realloc, used to
* _
objc_
realloc points to the function, called through object_realloc, used to
* reallocate memory for an object
*/
extern
id
(
*
_realloc
)(
id
,
unsigned
int
);
extern
id
(
*
_
objc_
realloc
)(
id
,
unsigned
int
);
/*
* _
copy points to the function, called through object_copy, used to create
* an exact copy of an object.
* _
objc_copy points to the function, called through object_copy,
*
used to create
an exact copy of an object.
*/
extern
id
(
*
_copy
)(
id
);
extern
id
(
*
_
objc_
copy
)(
id
);
/*
* _
error points to the function that the run-time system calls in response
* to an error. By default, it prints formatted error messages to the
* _
objc_error points to the function that the run-time system calls
* to
handle
an error. By default, it prints formatted error messages to the
* standard error stream and calls abort to produce a core file.
*/
extern
void
(
*
_error
)(
id
object
,
const
char
*
fmt
,
va_list
ap
);
extern
void
(
*
_
objc_
error
)(
id
object
,
const
char
*
fmt
,
va_list
ap
);
#ifdef __cplusplus
...
...
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