Firefox is no longer using /dev/shm.

This commit is contained in:
Jocelyn Le Sage 2023-01-04 20:33:59 -05:00
parent 974a94d2fd
commit 071fb903b0
12 changed files with 0 additions and 105 deletions

View file

@ -1,2 +0,0 @@
#!/bin/sh
echo "$APP_NAME is likely to crash because of the lack of shared memory. Size of shared memory needs to be increased. See the documentation of the Docker container to find out how this can be done."

View file

@ -1,16 +0,0 @@
#!/bin/sh
set -e # Exit immediately if a command exits with a non-zero status.
set -u # Treat unset variables as an error.
LINE="$1"
if [ "$LINE" = "SHM_CHECK_FAIL" ]; then
echo 'SHM_CHECK_ACK' > /tmp/.firefox_shm_check
exit 0
fi
# No match found.
exit 1
# vim: set ft=sh :

View file

@ -1 +0,0 @@
WARNING

View file

@ -1,2 +0,0 @@
#!/bin/sh
echo "$APP_NAME lacks of shared memory."

View file

@ -1,2 +0,0 @@
#!/bin/sh
echo "A $APP_NAME tab crashed because of the lack of shared memory. Size of shared memory needs to be increased. See the documentation of this Docker container to find out how this can be done."

View file

@ -1,17 +0,0 @@
#!/bin/sh
set -e # Exit immediately if a command exits with a non-zero status.
set -u # Treat unset variables as an error.
LINE="$1"
#if echo "$LINE" | grep -q "OutOfMemoryError occurred...RESTARTING!"; then
if [ "$LINE" = "###!!! [Parent][MessageChannel] Error: (msgtype=0x150084,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv" ]
then
exit 0
fi
# No match found.
exit 1
# vim: set ft=sh :

View file

@ -1,2 +0,0 @@
#!/bin/sh
echo "$APP_NAME lacks of shared memory."