diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-04 13:57:06 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-04 13:57:06 +0000 |
commit | 10f8ee308b43dcf4e42d3e9ab6bc701c578e74bc (patch) | |
tree | fed14f02c23978b6d2edd58b011c1329b9eb99d8 /vms/vmsruby_private.c | |
parent | bffac137b66af3f0686df363fb01ff2a563d1298 (diff) | |
download | ruby-10f8ee308b43dcf4e42d3e9ab6bc701c578e74bc.tar.gz ruby-10f8ee308b43dcf4e42d3e9ab6bc701c578e74bc.tar.xz ruby-10f8ee308b43dcf4e42d3e9ab6bc701c578e74bc.zip |
* dln.c: Ruby no longer supports VMS.
* error.c: ditto.
* eval.c: ditto.
* eval_intern.h: ditto.
* include/ruby/defines.h: ditto.
* include/ruby/ruby.h: ditto.
* io.c: ditto.
* process.c: ditto.
* ruby.c: ditto.
* vms/config.h: removed.
* vms/vms.h: ditto.
* vms/vmsruby_private.c: ditto.
* vms/vmsruby_private.h: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vms/vmsruby_private.c')
-rw-r--r-- | vms/vmsruby_private.c | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/vms/vmsruby_private.c b/vms/vmsruby_private.c deleted file mode 100644 index c1cbfcebe..000000000 --- a/vms/vmsruby_private.c +++ /dev/null @@ -1,52 +0,0 @@ -#include "vmsruby_private.h" -#include <stdio.h> -#include <stdlib.h> - -void _vmsruby_init(void) -{ - _vmsruby_set_switch("DECC$WLS", "TRUE"); -} - - -#include <starlet.h> -#include <string.h> -#include <descrip.h> -#include <lnmdef.h> - -struct item_list_3 { - short buflen; - short itmcod; - void *bufadr; - void *retlen; -}; - -long _vmsruby_set_switch(char *name, char *value) -{ - long status; - struct item_list_3 itemlist[20]; - int i; - - i = 0; - itemlist[i].itmcod = LNM$_STRING; - itemlist[i].buflen = strlen(value); - itemlist[i].bufadr = value; - itemlist[i].retlen = NULL; - i++; - itemlist[i].itmcod = 0; - itemlist[i].buflen = 0; - - $DESCRIPTOR(TABLE_d, "LNM$PROCESS"); - $DESCRIPTOR(lognam_d, ""); - - lognam_d.dsc$a_pointer = name; - lognam_d.dsc$w_length = strlen(name); - - status = sys$crelnm ( - 0, - &TABLE_d, - &lognam_d, - 0, /* usermode */ - itemlist); - - return status; -} |