Re: [Csgo_servers] After updating to 1.37.7.8, the server crashes after setting the priority to srcds_linux

2021-01-28 Thread Marco Padovan
Possibly related to libSDL2-2.0.so.0 when scheduler is not SCHED_OTHER?

I didn't test much but from a quick lock crash seems to happen when doing a
changelevel

try with just the renice to confirm it's related to the scheduler in use

On Thu, 28 Jan 2021 at 13:40, YUAN RUI - number201724 at me.com (via
csgo_servers list)  wrote:

> After updating to 1.37.7.8, the server crashes after setting the priority
> to srcds_linux 
>
>
> #!/bin/bash
> #
> __
> PROCESS_NAMES=(
>   srcds_linux
> );
>
> for pid in $(for executable in ${PROCESS_NAMES[@]}; do pgrep ${executable}
> ;done) ;do
>   chrt -r -p 98 $pid
>   renice 1 -p $pid
> done
>
>
> The srcds_linux process will inexplicably prompt Killed
>
> ___
> To unsubscribe, edit your list preferences, or view the list archives,
> please visit:
> https://list.valvesoftware.com/
>
___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
https://list.valvesoftware.com/

[Csgo_servers] After updating to 1.37.7.8, the server crashes after setting the priority to srcds_linux

2021-01-28 Thread via csgo_servers list
After updating to 1.37.7.8, the server crashes after setting the 
priority to srcds_linux 



#!/bin/bash
# 
__

PROCESS_NAMES=(
  srcds_linux
);

for pid in $(for executable in ${PROCESS_NAMES[@]}; do pgrep 
${executable} ;done) ;do

  chrt -r -p 98 $pid
  renice 1 -p $pid
done


The srcds_linux process will inexplicably prompt Killed

___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
https://list.valvesoftware.com/