diff options
author | Jochen Dolze <vdr@dolze.de> | 2011-02-21 22:23:06 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2011-02-21 22:23:06 +0100 |
commit | 39d416b9b484981a5ef547fcee1060166aa0c1b2 (patch) | |
tree | 15b8641a118f734cd7a9f55dc717bfacd5556447 /command/markad-standalone.cpp | |
parent | a04233bf29bc24389ad08d387bf22a3d84d946a5 (diff) | |
download | vdr-plugin-markad-39d416b9b484981a5ef547fcee1060166aa0c1b2.tar.gz vdr-plugin-markad-39d416b9b484981a5ef547fcee1060166aa0c1b2.tar.bz2 |
Fixed markad running when timer is deleted bug
Removed option "hdd priority", start markad always with idle iopriority
Diffstat (limited to 'command/markad-standalone.cpp')
-rw-r--r-- | command/markad-standalone.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command/markad-standalone.cpp b/command/markad-standalone.cpp index abf820b..51e4950 100644 --- a/command/markad-standalone.cpp +++ b/command/markad-standalone.cpp @@ -2167,7 +2167,7 @@ int usage(int svdrpport) " io priority of markad when running in background\n" " <class> 1 = realtime, <level> from 0..7, default 4\n" " 2 = besteffort, <level> from 0..7, default 4\n" - " 3 = idle\n" + " 3 = idle (default)\n" "-v --verbose\n" " increments loglevel by one, can be given multiple times\n" "-B --backupmarks\n" @@ -2283,8 +2283,8 @@ int main(int argc, char *argv[]) bool bAfter=false,bEdited=false; bool bFork=false,bNice=false,bImmediateCall=false; int niceLevel = 19; - int ioprio_class=2; - int ioprio=4; + int ioprio_class=3; + int ioprio=7; char *tok,*str; int ntok; int online=0; |