blob: 3d4b52631c59d103752cc6b25e9c529211522800 [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
Benny Prijonoa771a512007-02-19 01:13:53 +00003 * Copyright (C)2003-2007 Benny Prijono <benny@prijono.org>
Benny Prijono9033e312005-11-21 02:08:39 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#include <pj/errno.h>
20#include <pj/string.h>
21#include <errno.h>
22
23PJ_DEF(pj_status_t) pj_get_os_error(void)
24{
25 return PJ_STATUS_FROM_OS(errno);
26}
27
28PJ_DEF(void) pj_set_os_error(pj_status_t code)
29{
30 errno = PJ_STATUS_TO_OS(code);
31}
32
33PJ_DEF(pj_status_t) pj_get_netos_error(void)
34{
35 return PJ_STATUS_FROM_OS(errno);
36}
37
38PJ_DEF(void) pj_set_netos_error(pj_status_t code)
39{
40 errno = PJ_STATUS_TO_OS(code);
41}
42
Benny Prijonoa1e69682007-05-11 15:14:34 +000043PJ_BEGIN_DECL
44
45 PJ_DECL(int) platform_strerror(pj_os_err_type code,
46 char *buf, pj_size_t bufsize );
47PJ_END_DECL
48
Benny Prijono9033e312005-11-21 02:08:39 +000049/*
50 * platform_strerror()
51 *
52 * Platform specific error message. This file is called by pj_strerror()
53 * in errno.c
54 */
55int platform_strerror( pj_os_err_type os_errcode,
56 char *buf, pj_size_t bufsize)
57{
58 const char *syserr = strerror(os_errcode);
59 pj_size_t len = syserr ? strlen(syserr) : 0;
60
61 if (len >= bufsize) len = bufsize - 1;
62 if (len > 0)
63 pj_memcpy(buf, syserr, len);
64 buf[len] = '\0';
65 return len;
66}
67
68