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
24985beb
Commit
24985beb
authored
Nov 15, 2002
by
Kazu Hirata
Committed by
Kazu Hirata
Nov 15, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gthr-single.h: Fix formatting.
From-SVN: r59116
parent
8b54424d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
23 deletions
+27
-23
gcc/ChangeLog
+4
-0
gcc/gthr-single.h
+23
-23
No files found.
gcc/ChangeLog
View file @
24985beb
2002
-
11
-
14
Kazu
Hirata
<
kazu
@cs
.
umass
.
edu
>
*
gthr
-
single
.
h
:
Fix
formatting
.
2002
-
11
-
14
Zack
Weinberg
<
zack
@codesourcery
.
com
>
2002
-
11
-
14
Zack
Weinberg
<
zack
@codesourcery
.
com
>
*
tree
.
c
(
tree_vec_elt_check_failed
)
:
New
function
.
*
tree
.
c
(
tree_vec_elt_check_failed
)
:
New
function
.
...
...
gcc/gthr-single.h
View file @
24985beb
...
@@ -50,7 +50,7 @@ static void *thread_local_storage = NULL;
...
@@ -50,7 +50,7 @@ static void *thread_local_storage = NULL;
/* Initialize the threads subsystem. */
/* Initialize the threads subsystem. */
static
inline
int
static
inline
int
__gthread_objc_init_thread_system
(
void
)
__gthread_objc_init_thread_system
(
void
)
{
{
/* No thread support available */
/* No thread support available */
return
-
1
;
return
-
1
;
...
@@ -58,7 +58,7 @@ __gthread_objc_init_thread_system(void)
...
@@ -58,7 +58,7 @@ __gthread_objc_init_thread_system(void)
/* Close the threads subsystem. */
/* Close the threads subsystem. */
static
inline
int
static
inline
int
__gthread_objc_close_thread_system
(
void
)
__gthread_objc_close_thread_system
(
void
)
{
{
/* No thread support available */
/* No thread support available */
return
-
1
;
return
-
1
;
...
@@ -68,7 +68,7 @@ __gthread_objc_close_thread_system(void)
...
@@ -68,7 +68,7 @@ __gthread_objc_close_thread_system(void)
/* Create a new thread of execution. */
/* Create a new thread of execution. */
static
inline
objc_thread_t
static
inline
objc_thread_t
__gthread_objc_thread_detach
(
void
(
*
func
)(
void
*
),
void
*
UNUSED
(
arg
))
__gthread_objc_thread_detach
(
void
(
*
func
)(
void
*
),
void
*
UNUSED
(
arg
))
{
{
/* No thread support available */
/* No thread support available */
return
NULL
;
return
NULL
;
...
@@ -76,7 +76,7 @@ __gthread_objc_thread_detach(void (* func)(void *), void * UNUSED(arg))
...
@@ -76,7 +76,7 @@ __gthread_objc_thread_detach(void (* func)(void *), void * UNUSED(arg))
/* Set the current thread's priority. */
/* Set the current thread's priority. */
static
inline
int
static
inline
int
__gthread_objc_thread_set_priority
(
int
UNUSED
(
priority
))
__gthread_objc_thread_set_priority
(
int
UNUSED
(
priority
))
{
{
/* No thread support available */
/* No thread support available */
return
-
1
;
return
-
1
;
...
@@ -84,39 +84,39 @@ __gthread_objc_thread_set_priority(int UNUSED(priority))
...
@@ -84,39 +84,39 @@ __gthread_objc_thread_set_priority(int UNUSED(priority))
/* Return the current thread's priority. */
/* Return the current thread's priority. */
static
inline
int
static
inline
int
__gthread_objc_thread_get_priority
(
void
)
__gthread_objc_thread_get_priority
(
void
)
{
{
return
OBJC_THREAD_INTERACTIVE_PRIORITY
;
return
OBJC_THREAD_INTERACTIVE_PRIORITY
;
}
}
/* Yield our process time to another thread. */
/* Yield our process time to another thread. */
static
inline
void
static
inline
void
__gthread_objc_thread_yield
(
void
)
__gthread_objc_thread_yield
(
void
)
{
{
return
;
return
;
}
}
/* Terminate the current thread. */
/* Terminate the current thread. */
static
inline
int
static
inline
int
__gthread_objc_thread_exit
(
void
)
__gthread_objc_thread_exit
(
void
)
{
{
/* No thread support available */
/* No thread support available */
/* Should we really exit the program */
/* Should we really exit the program */
/* exit(&__objc_thread_exit_status); */
/* exit
(&__objc_thread_exit_status); */
return
-
1
;
return
-
1
;
}
}
/* Returns an integer value which uniquely describes a thread. */
/* Returns an integer value which uniquely describes a thread. */
static
inline
objc_thread_t
static
inline
objc_thread_t
__gthread_objc_thread_id
(
void
)
__gthread_objc_thread_id
(
void
)
{
{
/* No thread support, use 1. */
/* No thread support, use 1. */
return
(
objc_thread_t
)
1
;
return
(
objc_thread_t
)
1
;
}
}
/* Sets the thread's local storage pointer. */
/* Sets the thread's local storage pointer. */
static
inline
int
static
inline
int
__gthread_objc_thread_set_data
(
void
*
value
)
__gthread_objc_thread_set_data
(
void
*
value
)
{
{
thread_local_storage
=
value
;
thread_local_storage
=
value
;
return
0
;
return
0
;
...
@@ -124,7 +124,7 @@ __gthread_objc_thread_set_data(void *value)
...
@@ -124,7 +124,7 @@ __gthread_objc_thread_set_data(void *value)
/* Returns the thread's local storage pointer. */
/* Returns the thread's local storage pointer. */
static
inline
void
*
static
inline
void
*
__gthread_objc_thread_get_data
(
void
)
__gthread_objc_thread_get_data
(
void
)
{
{
return
thread_local_storage
;
return
thread_local_storage
;
}
}
...
@@ -133,21 +133,21 @@ __gthread_objc_thread_get_data(void)
...
@@ -133,21 +133,21 @@ __gthread_objc_thread_get_data(void)
/* Allocate a mutex. */
/* Allocate a mutex. */
static
inline
int
static
inline
int
__gthread_objc_mutex_allocate
(
objc_mutex_t
UNUSED
(
mutex
))
__gthread_objc_mutex_allocate
(
objc_mutex_t
UNUSED
(
mutex
))
{
{
return
0
;
return
0
;
}
}
/* Deallocate a mutex. */
/* Deallocate a mutex. */
static
inline
int
static
inline
int
__gthread_objc_mutex_deallocate
(
objc_mutex_t
UNUSED
(
mutex
))
__gthread_objc_mutex_deallocate
(
objc_mutex_t
UNUSED
(
mutex
))
{
{
return
0
;
return
0
;
}
}
/* Grab a lock on a mutex. */
/* Grab a lock on a mutex. */
static
inline
int
static
inline
int
__gthread_objc_mutex_lock
(
objc_mutex_t
UNUSED
(
mutex
))
__gthread_objc_mutex_lock
(
objc_mutex_t
UNUSED
(
mutex
))
{
{
/* There can only be one thread, so we always get the lock */
/* There can only be one thread, so we always get the lock */
return
0
;
return
0
;
...
@@ -155,7 +155,7 @@ __gthread_objc_mutex_lock(objc_mutex_t UNUSED(mutex))
...
@@ -155,7 +155,7 @@ __gthread_objc_mutex_lock(objc_mutex_t UNUSED(mutex))
/* Try to grab a lock on a mutex. */
/* Try to grab a lock on a mutex. */
static
inline
int
static
inline
int
__gthread_objc_mutex_trylock
(
objc_mutex_t
UNUSED
(
mutex
))
__gthread_objc_mutex_trylock
(
objc_mutex_t
UNUSED
(
mutex
))
{
{
/* There can only be one thread, so we always get the lock */
/* There can only be one thread, so we always get the lock */
return
0
;
return
0
;
...
@@ -163,7 +163,7 @@ __gthread_objc_mutex_trylock(objc_mutex_t UNUSED(mutex))
...
@@ -163,7 +163,7 @@ __gthread_objc_mutex_trylock(objc_mutex_t UNUSED(mutex))
/* Unlock the mutex */
/* Unlock the mutex */
static
inline
int
static
inline
int
__gthread_objc_mutex_unlock
(
objc_mutex_t
UNUSED
(
mutex
))
__gthread_objc_mutex_unlock
(
objc_mutex_t
UNUSED
(
mutex
))
{
{
return
0
;
return
0
;
}
}
...
@@ -172,36 +172,36 @@ __gthread_objc_mutex_unlock(objc_mutex_t UNUSED(mutex))
...
@@ -172,36 +172,36 @@ __gthread_objc_mutex_unlock(objc_mutex_t UNUSED(mutex))
/* Allocate a condition. */
/* Allocate a condition. */
static
inline
int
static
inline
int
__gthread_objc_condition_allocate
(
objc_condition_t
UNUSED
(
condition
))
__gthread_objc_condition_allocate
(
objc_condition_t
UNUSED
(
condition
))
{
{
return
0
;
return
0
;
}
}
/* Deallocate a condition. */
/* Deallocate a condition. */
static
inline
int
static
inline
int
__gthread_objc_condition_deallocate
(
objc_condition_t
UNUSED
(
condition
))
__gthread_objc_condition_deallocate
(
objc_condition_t
UNUSED
(
condition
))
{
{
return
0
;
return
0
;
}
}
/* Wait on the condition */
/* Wait on the condition */
static
inline
int
static
inline
int
__gthread_objc_condition_wait
(
objc_condition_t
UNUSED
(
condition
),
__gthread_objc_condition_wait
(
objc_condition_t
UNUSED
(
condition
),
objc_mutex_t
UNUSED
(
mutex
))
objc_mutex_t
UNUSED
(
mutex
))
{
{
return
0
;
return
0
;
}
}
/* Wake up all threads waiting on this condition. */
/* Wake up all threads waiting on this condition. */
static
inline
int
static
inline
int
__gthread_objc_condition_broadcast
(
objc_condition_t
UNUSED
(
condition
))
__gthread_objc_condition_broadcast
(
objc_condition_t
UNUSED
(
condition
))
{
{
return
0
;
return
0
;
}
}
/* Wake up one thread waiting on this condition. */
/* Wake up one thread waiting on this condition. */
static
inline
int
static
inline
int
__gthread_objc_condition_signal
(
objc_condition_t
UNUSED
(
condition
))
__gthread_objc_condition_signal
(
objc_condition_t
UNUSED
(
condition
))
{
{
return
0
;
return
0
;
}
}
...
...
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