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
cc782a7e
Commit
cc782a7e
authored
Jun 07, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now compiles as a separate source file, so include appropriate
Objective-C headers. From-SVN: r12217
parent
7228791e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
23 additions
and
11 deletions
+23
-11
gcc/objc/thr-decosf1.c
+2
-0
gcc/objc/thr-irix.c
+2
-0
gcc/objc/thr-mach.c
+4
-3
gcc/objc/thr-os2.c
+4
-4
gcc/objc/thr-posix.c
+4
-3
gcc/objc/thr-single.c
+3
-0
gcc/objc/thr-solaris.c
+2
-1
gcc/objc/thr-win32.c
+2
-0
No files found.
gcc/objc/thr-decosf1.c
View file @
cc782a7e
...
...
@@ -25,6 +25,8 @@ Boston, MA 02111-1307, USA. */
covered by the GNU General Public License. */
#include <pthread.h>
#include <objc/thr.h>
#include "runtime.h"
/********
* This structure represents a single mutual exclusion lock. Lock semantics
...
...
gcc/objc/thr-irix.c
View file @
cc782a7e
...
...
@@ -29,6 +29,8 @@ Boston, MA 02111-1307, USA. */
#include <sys/sysmp.h>
#include <sys/prctl.h>
#include <ulocks.h>
#include <objc/thr.h>
#include "runtime.h"
/********
* This structure represents a single mutual exclusion lock. Lock semantics
...
...
gcc/objc/thr-mach.c
View file @
cc782a7e
/* GNU Objective C Runtime Thread Implementation
Copyright (C) 1996 Free Software Foundation, Inc.
Author: Galen C. Hunt (gchunt@cs.rochester.edu)
Modified for Mach threads by: Bill Bumgarner <bbum@friday.com>
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
Modified for Mach threads by Bill Bumgarner <bbum@friday.com>
This file is part of GNU CC.
...
...
@@ -28,6 +27,8 @@ Boston, MA 02111-1307, USA. */
#include <mach/mach.h>
#include <mach/cthreads.h>
#include <objc/thr.h>
#include "runtime.h"
/********
* This structure represents a single mutual exclusion lock. Lock semantics
...
...
gcc/objc/thr-os2.c
View file @
cc782a7e
/* GNU Objective C Runtime Thread Interface - OS/2 emx Implementation
Copyright (C) 1996 Free Software Foundation, Inc.
Author: Thomas Baier (baier@ci.tuwien.ac.at)
This file is included into thread.c
Contributed by Thomas Baier (baier@ci.tuwien.ac.at)
This file is part of GNU CC.
...
...
@@ -27,6 +24,9 @@ Boston, MA 02111-1307, USA. */
however invalidate any other reasons why the executable file might be
covered by the GNU General Public License. */
#include <objc/thr.h>
#include "runtime.h"
#define INCL_DOSSEMAPHORES
#define INCL_DOSPROCESS
...
...
gcc/objc/thr-posix.c
View file @
cc782a7e
/* GNU Objective C Runtime Thread Interface for POSIX compliant threads
Copyright (C) 1996 Free Software Foundation, Inc.
Author: Galen C. Hunt (gchunt@cs.rochester.edu)
Modified for Linux & Pthreads: Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
Modified for Linux/Pthreads by Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
This file is part of GNU CC.
...
...
@@ -26,6 +25,8 @@ Boston, MA 02111-1307, USA. */
however invalidate any other reasons why the executable file might be
covered by the GNU General Public License. */
#include <objc/thr.h>
#include "runtime.h"
#include <pthread.h>
/********
...
...
gcc/objc/thr-single.c
View file @
cc782a7e
...
...
@@ -24,6 +24,9 @@ Boston, MA 02111-1307, USA. */
however invalidate any other reasons why the executable file might be
covered by the GNU General Public License. */
#include <objc/thr.h>
#include "runtime.h"
/********
* This structure represents a single mutual exclusion lock. Lock semantics
* are detailed with the subsequent functions. We use whatever lock is
...
...
gcc/objc/thr-solaris.c
View file @
cc782a7e
/* GNU Objective C Runtime Thread Interface
Copyright (C) 1996 Free Software Foundation, Inc.
Co
bnrt
ibuted by Galen C. Hunt (gchunt@cs.rochester.edu)
Co
ntr
ibuted by Galen C. Hunt (gchunt@cs.rochester.edu)
This file is part of GNU CC.
...
...
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */
however invalidate any other reasons why the executable file might be
covered by the GNU General Public License. */
#include <objc/thr.h>
#include "runtime.h"
#include <thread.h>
...
...
gcc/objc/thr-win32.c
View file @
cc782a7e
...
...
@@ -25,6 +25,8 @@ Boston, MA 02111-1307, USA. */
covered by the GNU General Public License. */
#include <windows.h>
#include <objc/thr.h>
#include "runtime.h"
/********
* This structure represents a single mutual exclusion lock. Lock semantics
...
...
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