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
6e15d3a8
Commit
6e15d3a8
authored
Aug 10, 2001
by
Loren J. Rittle
Committed by
Loren J. Rittle
Aug 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gnu/gcj/convert/natIconv.cc (done): Use HAVE_ICONV.
From-SVN: r44772
parent
cc3835e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
libjava/ChangeLog
+1
-0
libjava/gnu/gcj/convert/natIconv.cc
+8
-0
No files found.
libjava/ChangeLog
View file @
6e15d3a8
2001-08-10 Loren J. Rittle <ljrittle@acm.org>
* java/lang/natObject.cc (is_mp): Protect use of _SC_NPROCESSORS_ONLN.
* gnu/gcj/convert/natIconv.cc (done): Use HAVE_ICONV.
2001-08-06 Tom Tromey <tromey@redhat.com>
...
...
libjava/gnu/gcj/convert/natIconv.cc
View file @
6e15d3a8
...
...
@@ -118,6 +118,7 @@ gnu::gcj::convert::Input_iconv::read (jcharArray outbuffer,
void
gnu
::
gcj
::
convert
::
Input_iconv
::
done
()
{
#ifdef HAVE_ICONV
// 50 bytes should be enough for any reset sequence.
size_t
avail
=
50
;
char
tmp
[
avail
];
...
...
@@ -127,6 +128,9 @@ gnu::gcj::convert::Input_iconv::done ()
// might be generated in that situation.
iconv_adapter
(
iconv
,
(
iconv_t
)
handle
,
NULL
,
NULL
,
&
p
,
&
avail
);
BytesToUnicode
::
done
();
#else
/* HAVE_ICONV */
// If no iconv, do nothing
#endif
/* HAVE_ICONV */
}
void
...
...
@@ -269,6 +273,7 @@ gnu::gcj::convert::IOConverter::iconv_init (void)
void
gnu
::
gcj
::
convert
::
Output_iconv
::
done
()
{
#ifdef HAVE_ICONV
// 50 bytes should be enough for any reset sequence.
size_t
avail
=
50
;
char
tmp
[
avail
];
...
...
@@ -278,4 +283,7 @@ gnu::gcj::convert::Output_iconv::done ()
// might be generated in that situation.
iconv_adapter
(
iconv
,
(
iconv_t
)
handle
,
NULL
,
NULL
,
&
p
,
&
avail
);
UnicodeToBytes
::
done
();
#else
/* HAVE_ICONV */
// If no iconv, do nothing
#endif
/* HAVE_ICONV */
}
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