Closed
Bug 3207
Opened 26 years ago
Closed 26 years ago
RX: unicharutil
Categories
(Core :: Internationalization, defect, P2)
Tracking
()
VERIFIED
INVALID
M3
People
(Reporter: chofmann, Assigned: ftang)
Details
Either ftang or cata:
Much of our non-static/global data needs to be partitioned by window,
not reachable by other windows except through statics/globals.
Therefore we're starting the hunt with statics and globals.
Please have a look at the file(s) below to see if we can improve reentrantcy
across
the code base by making modifications to:
intl/unicharutil/src/cattable.h: pat = gGenCatIdx1 [( u -(PRUnichar) 0x0000 )];
intl/unicharutil/src/cattable.h: pat = gGenCatIdx2 [( u -(PRUnichar) 0x0900 )];
intl/unicharutil/src/cattable.h: pat = gGenCatIdx3 [( u -(PRUnichar) 0x1E00 )];
intl/unicharutil/src/cattable.h: pat = gGenCatIdx4 [( u -(PRUnichar) 0x3000 )];
intl/unicharutil/src/cattable.h: pat = gGenCatIdx5 [( u -(PRUnichar) 0xF900 )];
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Assignee | ||
Comment 1•26 years ago
|
||
These code are READONLY code to access mapping table. The content of the table
never changed. It should be thread safe and reentrantcy.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
QA Contact: 3849
Comment 2•26 years ago
|
||
marking verified based on developer input
You need to log in
before you can comment on or make changes to this bug.
Description
•