Tagged Questions

0
votes
4answers
53 views

How to specify a variable expression list in a Pro*C query?

I have a little problem with a Pro*C query I'm trying to optimise. To explain, our application searches for rows in a huge database. These rows exist in several languages and the …
3
votes
1answer
60 views

Are there any “simple” explanations of what procs and lamdbas are in Ruby?

Are there any "simple" explanations of what procs and lamdbas are in Ruby?
0
votes
1answer
34 views

Limit the Number of Created Processes

I have two classes: Action class, that has a method for executing VBScript files, and Item class that contains a list of Action instances. My problem is that I want to limit the nu …
0
votes
0answers
15 views

PROC FCMP PROBLEM

I copy the code from a paper that i found on internet. proc fcmp outlib=work.funcs.Test; function whatAmI(); return(42); endsub; quit; options cmplib=work.fun …
0
votes
1answer
52 views

thread level memory consumption of process

How do I get per thread based memory consumption of a process in Linux? I understand that we can use /proc/pid/task/tid/statm, but thats not helping my case. All the threads show s …
0
votes
1answer
32 views

Accessing the proc_dir_entry from proc_fops.open?

I writing a linux kernel module that does some work with /proc... I'm trying to use the new seq methods for returning the data for /proc... Anyhow, after I call proc_create_data() …
2
votes
3answers
81 views

Why does explicit return make a difference in a Proc?

def foo f = Proc.new { return "return from foo from inside proc" } f.call # control leaves foo here return "return from foo" end def bar b = Proc.new { "return from bar f …
0
votes
2answers
71 views

How can two arguments be passed to a method with a one-argument signature?

s = Proc.new {|x|x*2} def one_arg(x) puts yield(x) end one_arg(5, &s) How does one_arg know about &s?
0
votes
1answer
27 views

ArgumentError calling a Proc

s = Proc.new {|x|x*2} puts s.call(5) -> 10 def foo(&a) a.call(5) end puts "test foo:" foo(s) When I try to call the proc above, I get: foo: wrong number of arguments ( …
0
votes
1answer
40 views

Why does this code produce a nil following a Proc.call?

C:\>irb irb(main):001:0> s = Proc.new { puts "Hello" } => #<Proc:0x04051780@(irb):1> irb(main):002:0> s.call Hello => nil What causes the nil? ruby 1.8.6 (2 …
1
vote
2answers
119 views

parsing proc/pid/cmdline to get function parameters

Hello all, I'm trying to extract the parameter with which an app was called by using the data inside cmdline. If I start an application instance like this: myapp 1 2 and t …
0
votes
1answer
41 views

sql server 2000: Short cut for getting stored proc text

Hi, what is the short cut to get entire text of the stored proc in query analyzer. I know that I could highlight table name and hit <alt><f1> and get the entire table s …
1
vote
1answer
66 views

What would be the simplest way to interface custom hardware with one input to have switch somewhere in /proc?

I have a device that takes low current 3-12v input signal to do it's magic and I would like to interface it to my linux box. What kind of options do I have on this? It would be gre …
1
vote
4answers
368 views

Informix to Oracle: Dealing with Fetching Null Values

A bit of background first. My company is evaluating whether or not we will migrate our Informix database to Oracle 10g. We have several ESQL/C programs. I've run some through the O …
0
votes
1answer
172 views

Oracle ProC ORA-12547

I'm working on re-compiling some proC code that no one currently at my company has ever compiled. . . It's compiling OK, but when I copy it to the production server and run it I'm …

1 2 next
15 30 50 per page