In Ruby, Proc objects are blocks of code that have been bound to a set of local variables. Once bound, the code may be called in different contexts and still access those variables.
0
votes
1answer
19 views
PROC : Regarding proc Executable size difference
2 years back , I have compiled the proc test.pc and create the executbale "test" .
Now same proc program I have compiled ,
but executable size is different compare to previous one(i didn't change ...
1
vote
0answers
49 views
+100
Where m flag and o flag will be stored in Linux
I want to know the value of m flag and o flag of recently received Router Advertisement. From the kernel source code I came to know that m flag and o flag are stored.
/*
* Remember the ...
1
vote
2answers
30 views
Linux daemon set /proc/
I once wrote a simple daemon in bash - also sets the values in /proc/*. For example,
echo 50 > /sys/class/backlight/acpi_video0/brightness
I want to rewrite in C + + and share - but how to use ...
0
votes
0answers
16 views
Why u_area is removed in FreeBSD and NetBSD
I had been heard that There is member called u_area in the proc structure on BSD.
So I tried to find u_area, but only to fail.
Anyone who knows why the u_area was removed on proc structure?
0
votes
1answer
35 views
In a function with two lambdas, when used with .call, how come only the last lambda is evaluated? (ruby clojures)
In the following code, I was reading on closures, but wondered what would happen if there was more than one proc object in the function. So when the function was .called, only the last lambda was ...
0
votes
3answers
28 views
Saving a block as an object to a variable without defining a function in ruby
I'm looking into blocks at the moment, and they have stumped me.
I used this as an example:
class ProcExample
attr_reader :proc_class
def initialize(&block)
@stored_proc = block
...
2
votes
0answers
41 views
Linux: Modifying the contents of /proc
I just found out that the /proc/$pid/mem file permissions are set to read/write for the owner. Why? Does that mean that the owner can write to process memory as it runs live?
(For the record, I ...
0
votes
1answer
20 views
statm doesn't report updated VmSize
I was trying to track how much memory my application is taking. So I was reading /proc/self/statm.
#include <iostream>
#include <fstream>
void print_mem(){
std::ifstream ...
0
votes
0answers
18 views
Creating a cluster using SAS proc cluster
I am trying to see the number of clusters I should take of a variable mag which relates to the magnitude of an earthquake.
The issue is that I would like to classify mag taking into account the ...
2
votes
1answer
56 views
how to pass a list to a proc in TCL?
Seems like a basic question but I cannot find the answer anywhere :-S
I am puzzled by the experiment below:
Tcl 8.5.13 interactive shell
% set args [list 1 2 3]
1 2 3
% llength $args
3
% set argv ...
1
vote
0answers
23 views
memory leak in *ProC file
I have some memory leak in my file and valgrind points to the code given below in the .cc file
sqlcxt(&ctx, &sqlctx, &sqlstm, &sqlfpn);
The code doesnot have this directly.The code ...
0
votes
2answers
37 views
Reserved Process ID [closed]
As per my knowledge Process ID 1 is reserved for init.
What does process id 2 indicate? why no softlink to the binary executable for this process ID.
sudo ls -l /proc/1/exe
lrwxrwxrwx 1 root ...
4
votes
1answer
64 views
How to convert method or lambda to non-lambda proc
As below, I can't call with wrong number of arguments a Proc created from a Method because it is a lambda, which is strict about the number of arguments.
# method with no args
def a; end
...
-1
votes
0answers
53 views
how to check if a socket is sending data in linux [closed]
I often have to debug processes which involve a server client tcp connection. I'd like to check, during times where a client might seem stuck, whether the server is sending it data or not. I can use:
...
0
votes
0answers
5 views
sas proc export with full permissions
I have been hunting around a way to proc export a file and grant it full permissions. I believe the server settings to which we are exporting will come into play, but lets just assume that shouldt be ...
0
votes
1answer
48 views
Return control from controller's action with lambda in Rails
How can I fix this error? I want to DRY my controller, and in each method I perform a sanity check on params[], just making sure all params are present.
The problem is with lambda's return. As it is ...
0
votes
0answers
82 views
Realtime memory usage for processes in Linux (PSS) and CPU consumption
I want to monitor memory usage for each process in system which is not belong to root. This data is being used to draw charts in "realtime" (1 second interval). The best information about memory usage ...
0
votes
0answers
26 views
Jiffy duration in Android
I would like to figure out a way to get jiffy duration (used by /proc) on an Android device, something similar to sysconf(_SC_CLK_TCK).
My device (as probably most of others) uses 1 centisecond ...
1
vote
1answer
33 views
ruby, procedures and background processing: strategies to mix it all
I'm designing a solution which takes a batch of objects and pipes them into a queue to be handled asynchronously/later. I'm targeting a solution towards delayed_job/resque/sidekiq, where the worker is ...
-1
votes
1answer
33 views
Running a passed proc with params inside a class instance in ruby
This example is a bit contrived but it's from a test so it sort of just works this way and will help me figure out how to use this in the actual library. I have a lambda, defined like this:
l = ...
2
votes
1answer
71 views
Return statements inside procs, lambdas, and blocks
I am having a lot of trouble understanding how return works in blocks, procs, and lambdas.
For instance, in the following case, why does batman_ironman_proc work, while batman_yield throw an error?
...
4
votes
2answers
93 views
How to create this little DSL in Ruby?
My functions are:
def hello(str)
puts "hello #{str}"
end
def hello_scope(scope, &block)
# ???
end
I would like to temporarily augment a function within a block of my method.
In ...
0
votes
1answer
41 views
SAS Proc IML: Length of a vector
If I have a matrix that is say 10X2 and would to store in SAS the value of the length of the matrix (hence 10) under another variable...how is it done in PROC IML?
1
vote
2answers
89 views
Which one is a Ruby deprecated proc?
In the book Programming Ruby: The Pragmatic Programmers Guide by Dave Thomas with Chad Fowler and Andy Hunt, regarding the creation of Procs there is a footnote that states:
"There’s actually a ...
1
vote
1answer
50 views
Can I pass a block which itself expect a block to instance_exec in ruby?
I expect the code
foo=proc{puts "foo"}
instance_exec(1,2,3,&foo) do |*args , &block|
puts *args
block.call
puts "bar"
end
to output
1
2
3
foo
bar
But got the error
both block ...
0
votes
0answers
39 views
PRO *C Why the sql user & password should be mentioned in make file
I have a wierd question and i am trying to backtrace to the root cause.
The scenario is,
I have a bunch of c, cpp & Pro C code scattered in multiple folders [huge # of files]. Dozens of make ...
1
vote
2answers
739 views
Java Runtime.getRuntime().exec(); not running program
the problem is that I am trying to make a game launcher and when you log in it goes and starts the actual game.
the code I have been told to do this is Runtime.getRuntime().exec();
i can run simple ...
0
votes
3answers
87 views
Ruby Block to Array
I'm trying to take a block argument in a method, and turn the contents (array of Symbols) and make it into an array. For example:
def sequence(&block)
# ?
end
sequence do
:foo,
:bar,
...
0
votes
0answers
15 views
What is the usage of non-readable vma chunk?
I just wonder about the usage of non-readable vma chunk.
Here is the virtual memory mapping information of 'vi' process from /proc/${PID}/maps
00400000-005b7000 r-xp 00000000 08:01 267175 ...
0
votes
2answers
62 views
How to pass a variable to a Ruby proc that updates dynamically?
p = Proc.new{ |v| puts v }
p(5) #=> 5
This works fine, but what if I want to "bind" v so it updates dymanically. For example:
p = Proc.new{ ... puts v }
v = 5
p #=> 5
v = 7
p #=> 7
3
votes
3answers
69 views
Is it possible to see the ruby code in a proc?
p = Proc.new{ puts 'ok' }
Is is possible to see the ruby code in the proc?
inspect returns the memory location:
puts p.inspect
#<Proc:0x007f9e42980b88@(irb):2>
Ruby 1.9.3
4
votes
2answers
52 views
not sure why a Proc would be used here - not getting something simple
I understand the concept of a proc but sometime I see code like this (take from rails guide for validation ...
2
votes
1answer
116 views
Cannot execute SELECT MAX(ORA_ROWSCN) from Embedded SQL
Environment : HP-UX 11.x C++ (ProC & aCC compiler) Oracle 10g )
I am unable to execute the following command from my C++ Embedded SQL code
EXEC SQL SELECT MAX(ORA_ROWSCN) INTO :scn_timestamp
...
1
vote
4answers
42 views
How do I use lambdas with arguments to collect an array?
I was curious how I may refactor this code:
array.collect{|x| x.some_method}.inject(:+) || 0
I have it about ten times in my code with different methods so I thought I should refactor, but how?
I ...
1
vote
2answers
121 views
What does to_proc method mean?
I am learning rails and following this thread. I am stuck with the to_proc method. I consider symbols only as alternatives to strings (they are like strings but cheaper in terms of memory). If there ...
1
vote
0answers
92 views
What happens to /proc/self/fd/4 in this example?
With bash 3.00.15(1):
$ ls /proc/self/fd 4<&1
0 1 2 3 4
$ echo | ls /proc/self/fd 4<&1
0 1 2 3 4
$ ls() { /bin/ls $*; }
$ ls /proc/self/fd 4<&1
0 1 2 3 4
$ echo | ls ...
0
votes
1answer
48 views
Report Rsquare and Standard Error SAS under PROC MODEL and SUR
If I run a simple proc reg in SAS, I have no problem to report the standard errors and rsquare. But why am I having some difficulties to report the Rsquare and Standard Errors for the intercepts and ...
0
votes
4answers
84 views
Oracle-sql query [closed]
I want to use single cursor to fetch single record or all records using where condition, e.g. : student is table and sid is an attribute.
I have two cursors,
DECLARE S1 CURSOR FOR SELECT * FROM ...
-2
votes
1answer
77 views
generating dynamic sql in c [closed]
I have to generate a c program that can generate a dynamic update sql and execute it.
The table name, no of columns to be updated and columns in where clause are known
only during run time.So i split ...
-1
votes
2answers
70 views
Make file: Flow doesnt enter if loop
i am trying to compile huge number of files (.pc pro*c code, c code and .h files into an exe) into one exe.
Sample code.
Please note that, the tab charrecters are placed accordingly. However removed ...
3
votes
1answer
59 views
Symbol vs. Proc in `Enumerable#inject`
Given that Enumerable#inject can take either a symbol or a block as the method to be used in the iteration, as explained in an answer to this question, is there any reason to use the & in ...
0
votes
1answer
52 views
BIND9.7. When several named processes are running, how to judge which process is providing the service?
For example, I execute "sudo named" several times, so there are several named processes running. When I use "pidof named", I get several pids.
I want to calculate the CPU usage rate of the BIND ...
1
vote
0answers
24 views
How to pre process Pro*C files in cmake? [duplicate]
Possible Duplicate:
How to compile additional source files in cmake after the build process
I need to preprocess a proc file (Pro*C oracle) to generate a C file and then compile it along ...
0
votes
1answer
75 views
How to compile additional source files in cmake after the build process
I have a project in cmake for windows which contains a Pro*C source file called database.proc, my goal is to generate a C source file from the .proc file and add it to the project to be linked along ...
11
votes
2answers
117 views
How is `Proc#==` evaluated?
How is Proc#== evaluated? RDoc says:
prc == other_proc → true or false
Returns true if prc is the same object as other_proc, or if they are both procs with the same body.
But it is not ...
0
votes
2answers
106 views
Ruby: map an array of keys to values shorthand
I just started with Ruby recently and I'm hoping there is a shorthand for using a bound method as a proc I'm missing. I'm trying to do this essentially
SYMBOLS = {"I" => 1, "V" => 5, "X" => ...
0
votes
2answers
198 views
Rails validation variable proc
:inclusion => {:in => r = (1..15), :min => r.first, :max => r.last}
This is working code I have. The thing I wanted to make dynamic is the "15" part, e.g
:inclusion => {:in => r = ...
1
vote
2answers
97 views
Create one of two possible store procedures in one script
I want to do a check (if statement) and then create one of two possible procedures.
Right now I am trying to use a IF EXISTS statement inside a CREATE PROCEDURE statement.
CREATE PROCEDURE ...
0
votes
1answer
88 views
Linux: memory usage summary for program
I need some command line utility able to run specified command and measure process group memory usage at peak and average (RSS, virtual and shared). As I understand that should be a combination of ...
3
votes
1answer
78 views
BY statement in SAS proc compare
What is the difference in using the ID statement Vs the BY Statement in proc compare.
I understand the ID statement -- that when added observations are compared according to ID..
but what exactly BY ...


