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
b7c4cd53
Commit
b7c4cd53
authored
May 06, 2003
by
Michael Ritzert
Committed by
Loren J. Rittle
May 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
And retweak.
Co-Authored-By: Matt Kraai <kraai@alumni.cmu.edu> From-SVN: r66530
parent
8b689196
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
libstdc++-v3/ChangeLog
+3
-0
libstdc++-v3/include/ext/stl_rope.h
+5
-1
No files found.
libstdc++-v3/ChangeLog
View file @
b7c4cd53
2003-05-06 Michael Ritzert <Ritzert@t-online.de>
Matt Kraai <kraai@alumni.cmu.edu>
* include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): Tweak.
And retweak.
2003-05-06 Richard Sandiford <rsandifo@redhat.com>
* configure.target (mips*): Use the generic atomicity.h by default.
...
...
libstdc++-v3/include/ext/stl_rope.h
View file @
b7c4cd53
...
...
@@ -500,7 +500,11 @@ struct _Rope_RopeRep : public _Rope_rep_base<_CharT,_Alloc>
# endif
_M_tag
(
__t
),
_M_is_balanced
(
__b
),
_M_depth
(
__d
),
_M_c_string
(
0
)
#ifdef __GTHREAD_MUTEX_INIT
{
_M_c_string_lock
=
__GTHREAD_MUTEX_INIT
;
}
{
// Do not copy a POSIX/gthr mutex once in use. However, bits are bits.
__gthread_mutex_t
__tmp
=
__GTHREAD_MUTEX_INIT
;
_M_c_string_lock
=
__tmp
;
}
#else
{
__GTHREAD_MUTEX_INIT_FUNCTION
(
&
_M_c_string_lock
);
}
#endif
...
...
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