Tag Info

New answers tagged

0

As other people have pointed out, relying on the parent pid to become 1 when the parent exits is non-portable. Instead of waiting for a specific parent process ID, just wait for the ID to change: pit_t pid = getpid(); switch (fork()) { case -1: { abort(); /* or whatever... */ } default: { /* parent */ exit(0); ...


0

Micro instances have a cpu profile unlike any other instance type. It can burst up to 2 compute units, but outside of that burst its limited to 0.1 or so. top also does not tell you the real cpu usage (due to effects of virtualization), you will need to look at cloudwatch for that.


0

^] means control/]. You aren't sending that correctly. Sending it as literal text "^]" won't work. So the logout probably never happens. Whatever the remaining problems, and I'm sure they exist, I doubt that they have anything to do with your title. Your question is really just about scripting.


0

The command you showed has nothing to do with baud rate, it controls pin muxing. Many microcontrollers have many more peripheral functions than I/O pins, so the I/O pins need to be mapped to peripherals, and not all connections are possible. For your case, you need to designate particular pins as UART transmit and receive. I haven't done it myself, but I ...


0

There is an alternative: Use finfo on both Linux and Windows. By the way: You have a shell command injection vulnerability. The filename is not escaped - thats what functions like escapeshellargs() are for. Always use them!


0

I have just been informed by one of my coworkers that a change in major SOnumber reflects an incompatibility between the two versions, while a minor SOnumber does not. So, if it had been libexpat.so.0.0 and libexpat.so.0.1, there wouldn't have been a problem, but as soon as it goes from libexpat.so.0 to libexpat.so.1, it means there's an incompatibility.


0

There are lots of ways to go about this, but one way would be to loop through all the files, parse out the dates, and see if any date doesn't match the others. I'm not going to deprive you of the privilege of figuring out the bulk of the work, but the date parsing can be done like so: If you have bash: file=X_US_20130420.CSV myDate=${file##*([A-Z_])} ...


0

If we go purely by what you say about the code that's not showing -- that the memory is allocated, but never freed -- then that memory will remain allocated until the program ends. If you continue to allocate more memory without freeing any, eventually you'll run out...at which point malloc will start returning null pointers. However, absent a ulimit ...


0

You need to allow indexing the files on your web server - here are instructions for apache:http://www.cyberciti.biz/faq/enabling-apache-file-directory-indexing/ Then all you have to do is add the anchor tag to your html: <a href="http://home/file.txt" target="_blank">file.txt</a> I have done this many times using server side scripting but ...


1

For Libraries installed from source you have to run ldconfig, packagemanagers do this for you. But if you build a library from source you have to run ./configure make make install but also ldconfig and both make install and ldconfig should be done as superuser man ldconfig can tell you way more about caching and updating the libraries then I can.


0

You can create a script that will serve the file from your home directory through your website. Here is a PHP example that you can put on your site somewhere, like yoursite.com/downloadfile.php. <?php header('Content-type: text/plain'); // tell browser it is a text file header('Content-Disposition: attachment; filename="file.txt"'); // forces download ...


0

The regular expression that you are using, ^\.ru, means "anything that STARTS with .ru", so if the referer is http://some-site.ru/some-path/some-page.html, it's obviously not going to match. Try: RewriteCond %{HTTP_REFERER} ^https?://[^/]+\.ru/? [NC,OR]


0

Looks like there's no good solution, so here's the cleanest hack I can think of: have three layers of build scripts layer 1 is the Makefile layer 2 consists of a bunch of shell scripts, one per make target In each shell script in layer 2, do . conf/environment then run the actual build script in layer 3


0

Don't do such tricks. If you need to distinguish integers from pointers inside some container, consider using separate bit set to indicate such flag. In C++ std::bitset could be good enough. Reasons: Actually nobody guarantees pointers are long unsigned or long long unsigned. If you need to store them, always apply sizeof() and void * type (if you need to ...


0

Remember that the virtual address returned to your program does may necessarily line up to the actual physical address in memory. Infact, unless you are directly manipulating pretty special memory [e.g. some forms of graphics memory] then this is absolutely the case. In this case, its the maximum value of the MMU which defines the values of the pointers ...


0

Use program v4l2-ctl from your shell to control hardware settings on your webcam. To turn off autofocus, try: v4l2-ctl -c focus_auto=0 Display all possible controls via: v4l2-ctl -l The above commands default to your first device, i.e. /dev/video0. If you got two webcams, use -d switch to select the device of interest.


0

Unless you really need the space, or you're keeping alot of these things around, I would just use a plain union, and add a tag field. If you're going to go down that route, make sure that your memory is aligned to fit your needs.


0

Take a look at boost::lockfree::detail::tagged_ptr from boost.lockfree This is a class that was introduced in latest 1_53 boost. It stores pointer and additional 16 bites in 64 bites variable.


8

On x86-64, you WILL have a pointer that is over 47 bits in address have the 63rd bit set, since all the bits above "max number of bits supported by the architecture" (which is currently 48) must all have the same value as the most significant bit of the value itself. (That is any address above 0007 FFFF FFFF FFFF will be FFF8 0000 0000 0000 - everything in ...


3

It depends on the architecture. x86_64 architecture, for example, is currently using 48-bit addressing. It means that you could use 16 bits for your own needs (a trick that sometimes referred to as "pointer packing"). However, even the x86_64 architecture definition allows this limit to be raised in future implementations to the full 64 bits. If that ...


4

People have tried tricks like this before. It never works out well in the long run. Simply don't do it. Edit: better link - see reference to 'bit31', which was previously never returned as set. Once it could be set (over 2 gigs of RAM, gasp!) it would break naughty programs and therefore programs needed to opt into this option once this much memory became ...


3

So would this work or would I run into problems in either C or C++? Do you have 64 bits? Do you want your code to be portable to 32 bit systems? long does not necessarily have 64 bits. Big-endian v. little-endian? (Do you know which your system is?) Plus, hopeless confusion. Please just use an extra variable to store this information or you will ...


0

Running Java is nothing to do with Eclipse . You can run your java program in linux machine by opening terminal . Step1;- Set your JAVA_HOME in your bash profile . Step2:- open terminal , go to the folder or package where your main program is present. Step 3:- compile it using javac -cp lib.jar Filename.java Step 4:- After compilation class file will ...


0

The action must begin on the same line as the pattern in order to be recognized as an action. Change your code to: (\"(?:[^"]|\"\")*\")(,|\r\n?|\n)? { string temp = yytext; : } ("(?:|"")*"|[^",\r\n]*),? { string temp = yytext; : } and it should work fine.


0

You will need to install the JRE on the machine you want to run it on. This can be done with the following command: yum install java-1.6.0-openjdk* Once you have java then it is simply a matter of executing your application. I would recommend using eclipse to compile your project to a jar and use the following command to execute it: java -jar ...


2

In Eclipse use the "Export Runnable Jar" option. Highlight your project then click file->Export, choose Java, choose Runnable Jar file. Otherwise you can also use the javac compiler to compile your project and run it with the java command and your main class.


0

The argument should be right-to-left. I tried the following command with ImageMagick 6.8.5-7 (on windows) and it worked: convert -background lightblue -fill blue -pointsize 48 -font Arial -direction right-to-left label:"ABCDEFG" A2G_reversed2.png convert -version Version: ImageMagick 6.8.5-7 2013-05-19 Q16 http://www.imagemagick.org Copyright: Copyright ...


0

It sounds as though you've misunderstood select; the purpose of select (or poll, epoll, etc) is not "wait for data" but "wait for one or more events to occur on a series of file descriptors or a timer, or a signal to be raised". What "responsiveness" is going missing while you're in your select call? You said it's a console app so you're not talking about a ...


0

You could use the GCC mudflap library/instrumentation.


1

From a shell script, use the -t test flag applied to the file descriptor 0 (standard input). Examples: # Any Bourne-style shell [ -t 0 ] && echo This is a terminal # Modern interactive shells: ksh, bash, zsh [[ -t 0 ]] && echo This is a terminal


0

As pointed out by @n.m. and @htor, you need to have an HTTP server running on your Windows machine to be able to connect this way. What you can do is use Samba to mount a shared folder from your Windows box on your Linux box and copy the files to a local folder on your Linux box (google buzzword: smbmount).


7

Some digging around revealed the following methods: frame. This command was exactly what I was looking for. Output looked as follows: (gdb) frame #0 MyDialog::on_saveButton_clicked (this=0x72bf9e0) at src/ui/dialog/MyDialog.cxx:86 86 _item->save(); (gdb) where or bt (same effect): This prints out the call stack, ending on the current ...


0

Dont EmulationStation need some sort of X server running in the background for it to work? IF not, then try the following: #!/bin/sh pkill lxsession; sleep 5 su -c sh /home/pi/RetroPie/EmulationStation/emulationstation exit It could also be that when you log out of your lxde session the emulationstation dosent have a usershell to open it, therefore "su ...


1

As already commented, if you don't have an HTTP or FTP server up and running on your Windows box you will have problems connecting to it through internet. Until you have resolved that, a relatively fast way to transfer your files would be through sneakernet if you have physical access to the Windows box.


1

Make has both include and -include (as well as sinclude that is kept for compatibility with other make tools) statements (later stands for “optional” inclusion). So you can do something like this: PLATFORM := $(shell uname) include conf/environment_$(PLATFORM).mk Where every environment_*.mk defines the same variables but with different values depending ...


0

If you manage your script using supervisor it will automatically handle all logging of stdout/stderr for you. Additionally, it can automatically restart your script if it were to crash


0

My latest SPEC file: Name: package Version: 3.2.5 Release: redhat Summary: company package gateway pos server Group: Engineering License: company LLC - owned URL: http://www.company.com Source: %{name}.tar.gz %description The company package gateway server provides a key component in the company system architecture which passes information between ...


1

The below only applies to UDP (and only in linux, though others are similar), but that seems to be what you're asking about. Setting non-blocking mode on a UDP socket is completely irrelevant (for sending) as a send will never block -- it immediately sends the packet, without any buffering. It IS possible (if the machine is very busy) for there to be a ...


1

I Like using $(...) for command-line arguments that are dependent on some other program. I think this would work for your program python main.py $(find -name "foo*"). Found here


0

I actually found that there is an IOCTL which does pass raw data to and from the driver (at least for the hard drive): HDIO_DRIVE_TASKFILE (http://www.mjmwired.net/kernel/Documentation/ioctl/hdio.txt)


0

Your trailing ; aren't useful. I also can't understand why you put the thens there, you can put them on the same line as the condition. Furthermore, why did you double your brackets ? I'm also told that you need spaces inside the brackets. Your code would look like this: #!/bin/bash if [ -n "$1" ]; then if [ "$1" == "up" ]; then cd ...


4

You need whitespace to separate [[ and ]] from the code between them. For example: elif [[ "$1" == "halt" ]]; then cd /home/user/DevEnv && vagrant halt; fi This is a good use for the case statement, as well: case "$1" in up) cd /home/user/DevEnv && vagrant up ;; halt) cd /home/user/DevEnv && vagrant ...


2

As a general principle you need your effective uid (euid to be root) either when you are are writing the file or when you perform a chown(2) on the file. If you are doing this under Linux then there are linux specific methods that you can use. Generic Solution Without availability of sudo This is the old UNIX DAC approach, it's fraught with peril. It ...


1

If you are talking about UDP, you are completely off point here - for UDP the value of the SO_SNDBUF socket option puts a limit on the size of a datagram you can send. In other words, there's no real per-socket send buffer (though data is still queued in the kernel to be sent out by appropriate network controller). You would get EMSGSIZE if you try to ...


0

This is (for me at least) a doubtful design. It basically means that the Apache user has WRITE access to all that user's files including secrets for example ssh-keys. Not fun if a cracker attacks apache. A simple modification would be while running as 'anjan': chmod -R g-rwx ~ # undo the unsafe -R first chmod g+rx ~ ~/workspace chmod -R g+rx ...


-1

You can use setgid() to setup the process group as root while creating the file.


-1

Use the chown() method. There are probably more authoritative links, but this one is nice since it includes the calls to getpwnam(). I've done all of this in the past, but unfortunately I don't still have the code (it's owned by IBM). http://manpages.courier-mta.org/htmlman2/chown.2.html


0

You probably don't want to run your program as root, unless you really have to. Perhaps run "chown" from a shell script after running your program? Or, you can use chown(2) from a program running as root (or with equivalent capabilities, on linux).


0

I believe what you can do is write a signal handler at your application level which catches SIGINT (ctrl+c) or whatever signal of your choice (provided we can handle those) and from the signal handle call an IOCTL call to your driver inside kernel which inturn should reschedule your kernel read may be a change in logic like below you need to implement an ...


0

EDIT2: ctrl+c issues a signal(SIGINT) that can be treated with sigaction() -----------IGNORE MODE ON (according to @undefined-behaviour)------------- this code handles a ctrl+c EDIT: while ((a!='A')&&(a!='ctrl+c')); this was supposed to have the 'ctrl+c' char but stackoverflow doesnt show it (its the decimal/octal/hex: 0003) #include ...



Top 50 recent answers are included