~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/zvmem2.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: zvmem2.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: zvmem2.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* Level 2 "Virtual memory" operators */
16
16
#include "ghost.h"
17
17
#include "oper.h"
30
30
/* ------ Local/global VM control ------ */
31
31
 
32
32
/* <bool> .setglobal - */
33
 
private int
 
33
static int
34
34
zsetglobal(i_ctx_t *i_ctx_p)
35
35
{
36
36
    os_ptr op = osp;
42
42
}
43
43
 
44
44
/* <bool> .currentglobal - */
45
 
private int
 
45
static int
46
46
zcurrentglobal(i_ctx_t *i_ctx_p)
47
47
{
48
48
    os_ptr op = osp;
53
53
}
54
54
 
55
55
/* <any> gcheck/scheck <bool> */
56
 
private int
 
56
static int
57
57
zgcheck(i_ctx_t *i_ctx_p)
58
58
{
59
59
    os_ptr op = osp;
107
107
 * This implements only immediate garbage collection: enabling and
108
108
 * disabling GC is implemented by calling setuserparams.
109
109
 */
110
 
private int
 
110
static int
111
111
zvmreclaim(i_ctx_t *i_ctx_p)
112
112
{
113
113
    os_ptr op = osp;