Package Details: schedtoold 0.3-11

Git Clone URL: https://aur.archlinux.org/schedtoold.git (read-only, click to copy)
Package Base: schedtoold
Description: Simple daemon to renice/nice and change priorities of processes while running them.
Upstream URL: https://web.archive.org/web/20160407010156/http://www.darav.de/schedtoold.html
Keywords: daemon nice
Licenses: GPL
Submitter: None
Maintainer: Freso (popsUlfr)
Last Packager: popsUlfr
Votes: 24
Popularity: 0.000000
First Submitted: 2006-06-10 16:08 (UTC)
Last Updated: 2016-10-15 16:11 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

Freso commented on 2015-10-01 06:46 (UTC)

If you don't have the time to fix up the PKGBUILD yourself, feel free to add me as co-maintainer and I'll get it cleaned up a bit.

Freso commented on 2015-09-27 13:07 (UTC)

This PKGBUILD seems very outdated "|| return 1" has not been needed for a long time, and everything in the $source array is placed in $srcdir, so $srcdir/../*.patch do not exist (in build()).

pedrogabriel commented on 2015-08-06 23:35 (UTC)

Actually I don't know. I am using a patch that is like the one you did, and it worked fine, but with your it didn't. Strange as hell.

pums974 commented on 2015-08-06 16:45 (UTC)

It works fine now. What was wrong with my patch ?

pedrogabriel commented on 2015-08-06 02:13 (UTC)

@pums974, I updated it. Try to build it now, if it didn't work comment here.

pedrogabriel commented on 2015-08-05 22:48 (UTC)

I'm getting this when applying your patch patching file utils.c patch: **** malformed patch at line 4: writePidFile (char *filename) Are you sure about the patch? I added you as a co-mantainer, so if you think you can resolve and that, you can do it.

pums974 commented on 2015-08-05 19:13 (UTC)

Sorry I was traveling. I have no idea why no one else have this problem. According to "man 2 open" a third argument is mandatory when use O_CREAT. Thus, this patch resolve the problem. --- utils.c.old 2015-08-05 21:00:44.687115409 +0200 +++ utils.c 2015-08-05 21:00:58.090185657 +0200 @@ -83,7 +83,7 @@ writePidFile (char *filename) { pid_t pid = getpid (); - int fd = open (filename, O_TRUNC | O_CREAT | O_WRONLY); + int fd = open (filename, O_TRUNC | O_CREAT | O_WRONLY,S_IRUSR|S_IWUSR); char buf[6]; snprintf (buf, 6, "%i", pid);

jurf commented on 2015-08-03 07:44 (UTC)

Built this fine.

pedrogabriel commented on 2015-07-11 00:01 (UTC)

There's no new version of this package anywhere. If anyone wants to sugest how do we solve the problem's there exist in it please contact me. @pums974, do you know what is happening or how do I simulate that problem in my machine? Here it compiles just fine, so I don't know what's the problem with your installation.

pums974 commented on 2015-07-06 18:42 (UTC)

I have the same problem as sxe (on aur not aur4). It doesn't compile anymore. I have the same error : http://wklej.org/id/1747269/