[#3479] Missing .document files for ext/ libraries — Brian Candler <B.Candler@...>

The ri documentation for zlib, strscan and iconv doesn't get built by 'make

12 messages 2004/10/06

[#3492] Re: ANN: Free-form-operators patch — Markus <markus@...>

> In message "Re: ANN: Free-form-operators patch"

15 messages 2004/10/11
[#3493] Re: ANN: Free-form-operators patch — Yukihiro Matsumoto <matz@...> 2004/10/11

Hi,

[#3495] Re: ANN: Free-form-operators patch — Markus <markus@...> 2004/10/12

On Mon, 2004-10-11 at 16:16, Yukihiro Matsumoto wrote:

[#3561] 1.8.2 - what can we do to help? — Dave Thomas <dave@...>

Folks:

23 messages 2004/10/26
[#3562] Re: 1.8.2 - what can we do to help? — Yukihiro Matsumoto <matz@...> 2004/10/27

Hi,

Re: [BUG] Memory leak in ruby_1_8

From: Charles Comstock <dgtized@...>
Date: 2004-10-29 02:02:56 UTC
List: ruby-core #3613
would that be because the entire ruby file is client.rb and everytime
you run that it creates a server and doesn't quit after backgrounding
it and creating a sighandler?  It would be helpful if you labeled what
each filename is for an example like this.
   Charles Comstock


On Fri, 29 Oct 2004 10:24:15 +0900, David Ross <dross@code-exec.net> wrote:
> Hello,
> 
> I have a small memory leak. I tried using cvs to get ruby_1_8 right now.
> Okay, there is no leak with 1.8.2 preview. Its in stable. I tried
> running the attached scripts and ran test.sh just to make sure like I
> always do and it started to leak. Please try searching for the leak
> while I do as well..
> 
> David Ross
> --
> Hazzle free packages for Ruby?
> RPA is available from http://www.rubyarchive.org/
> 
> 
> #!/usr/bin/env ruby
> 
> require 'soap/rpc/standaloneServer'
> 
> class SqlCustomerPortServer < SOAP::RPC::StandaloneServer
>   class SqlCustomerService
>     def self.create
>       new
>     end
> 
>     def deposit(amt)
>       "deposit #{amt} OK"
>     end
> 
>     def withdrawal(amt)
>       "withdrawal #{amt} OK"
>     end
> 
>   end
> 
>   Name = 'http://tempuri.org/sqlCustomerPort'
>   def initialize(*arg)
>     super
>     add_rpc_servant(SqlCustomerService.new, Name)
>   end
> 
> end
> 
> if $0 == __FILE__
>   svr = SqlCustomerPortServer.new('SqlCustomerPortServer', nil, '0.0.0.0', 7000)
>   trap(:INT) do
>     svr.shutdown
>   end
>   status = svr.start
> end
> 
> 
> require 'soap/rpc/driver'
> require 'soap/header/simplehandler'
> 
> server = ARGV.shift || 'http://localhost:7000/'
> 
> ns = 'http://tempuri.org/sqlCustomerPort'
> serv = SOAP::RPC::Driver.new(server, ns)
> serv.add_method('deposit', 'amt')
> serv.add_method('withdrawal', 'amt')
> 
> #serv.wiredump_dev = STDOUT
> 
> p serv.deposit(150)
> p serv.withdrawal(120)
> 
> 
> #!/bin/sh
> while [ true ]
> do
>         ruby client.rb
> done
> 
> 
>

In This Thread