From 0d5b973720d9ab919113b5502a3b65f5bb1d1986 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 25 May 2005 23:35:25 +0000 Subject: * vms/vmsruby_private.c, vms/vmsruby_private.h: private routines for VMS port are added. * eval.c (ruby_init): change to call VMS private intialization routine. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vms/vmsruby_private.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ vms/vmsruby_private.h | 7 +++++++ 2 files changed, 59 insertions(+) create mode 100644 vms/vmsruby_private.c create mode 100644 vms/vmsruby_private.h (limited to 'vms') diff --git a/vms/vmsruby_private.c b/vms/vmsruby_private.c new file mode 100644 index 0000000000..c1cbfcebec --- /dev/null +++ b/vms/vmsruby_private.c @@ -0,0 +1,52 @@ +#include "vmsruby_private.h" +#include +#include + +void _vmsruby_init(void) +{ + _vmsruby_set_switch("DECC$WLS", "TRUE"); +} + + +#include +#include +#include +#include + +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; +} diff --git a/vms/vmsruby_private.h b/vms/vmsruby_private.h new file mode 100644 index 0000000000..24703dc7fc --- /dev/null +++ b/vms/vmsruby_private.h @@ -0,0 +1,7 @@ +#ifndef VMSRUBY_H_INCLUDED +#define VMSRUBY_H_INCLUDED + +void _vmsruby_init(void); +long _vmsruby_set_switch(char *, char *); + +#endif /* VMSRUBY_H_INCLUDED */ -- cgit v1.2.3