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
54d643f6
Commit
54d643f6
authored
Mar 05, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include objc/thread.h.
From-SVN: r11444
parent
691466c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
gcc/objc/objc-api.h
+2
-1
gcc/objc/runtime.h
+14
-2
No files found.
gcc/objc/objc-api.h
View file @
54d643f6
/* GNU Objective-C Runtime API.
Copyright (C) 1993, 1995 Free Software Foundation, Inc.
Copyright (C) 1993, 1995
, 1996
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */
#include "objc/objc.h"
#include "objc/hash.h"
#include "objc/thread.h"
#include <stdio.h>
/* For functions which return Method_t */
...
...
gcc/objc/runtime.h
View file @
54d643f6
/* GNU Objective C Runtime internal declarations
Copyright (C) 1993, 1995 Free Software Foundation, Inc.
Copyright (C) 1993, 1995
, 1996
Free Software Foundation, Inc.
Contributed by Kresten Krab Thorup
This file is part of GNU CC.
...
...
@@ -37,8 +37,10 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "objc/objc.h"
/* core data types */
#include "objc/objc-api.h"
/* runtime api functions */
#include "objc/thread.h"
/* thread and mutex support */
#include "objc/hash.h"
/* hash structures */
#include "objc/list.h"
/* linear lists */
#include "objc/
objc-
list.h"
/* linear lists */
extern
void
__objc_add_class_to_hash
(
Class
);
/* (objc-class.c) */
extern
void
__objc_init_selector_tables
();
/* (objc-sel.c) */
...
...
@@ -48,6 +50,10 @@ extern void __objc_install_premature_dtable(Class); /* (objc-dispatch.c) */
extern
void
__objc_resolve_class_links
();
/* (objc-class.c) */
extern
void
__objc_register_selectors_from_class
(
Class
);
/* (objc-sel.c) */
extern
void
__objc_update_dispatch_table_for_class
(
Class
);
/* (objc-msg.c) */
extern
int
__objc_init_thread_system
(
void
);
/* thread.c */
extern
int
__objc_fini_thread_system
(
void
);
/* thread.c */
extern
void
class_add_method_list
(
Class
,
MethodList_t
);
extern
void
objc_error
(
id
object
,
const
char
*
fmt
,
va_list
);
...
...
@@ -59,6 +65,12 @@ extern BOOL __objc_class_links_resolved;
/* Number of selectors stored in each of the selector tables */
extern
int
__objc_selector_max_index
;
/* Mutex locking __objc_selector_max_index and its arrays. */
extern
_objc_mutex_t
__objc_runtime_mutex
;
/* Number of threads which are alive. */
extern
int
__objc_runtime_threads_alive
;
#ifdef DEBUG
#define DEBUG_PRINTF(format, args...) printf (format, ## args)
#else
...
...
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