summaryrefslogtreecommitdiffstats
path: root/Python/pyarena.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:01:27 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:01:27 (GMT)
commit4eea84946908a132375451cdd8cb7ef682791c5c (patch)
tree3e80be52ed1fd8d4da98726e32a53adc05fcf3a5 /Python/pyarena.c
parent9a80faba886ab081e7ccb30440f3c8e158738bab (diff)
downloadcpython-4eea84946908a132375451cdd8cb7ef682791c5c.zip
cpython-4eea84946908a132375451cdd8cb7ef682791c5c.tar.gz
cpython-4eea84946908a132375451cdd8cb7ef682791c5c.tar.bz2
CJK codecs checks for conversion to Py_UNICODE* failures
Diffstat (limited to 'Python/pyarena.c')
0 files changed, 0 insertions, 0 deletions
a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "MarkStack.h" #if OS(SYMBIAN) #include <e32hal.h> namespace JSC { void MarkStack::initializePagesize() { TInt page_size; UserHal::PageSizeInBytes(page_size); MarkStack::s_pageSize = page_size; } void* MarkStack::allocateStack(size_t size) { return fastMalloc(size); } void MarkStack::releaseStack(void* addr, size_t size) { return fastFree(addr); } } #endif