More sandbox features will be added and this will no longer track ego's features and behaviour. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
13 lines
214 B
Go
13 lines
214 B
Go
package state
|
|
|
|
func RegisterRevertPath(p string) {
|
|
cleanupCandidate = append(cleanupCandidate, p)
|
|
}
|
|
|
|
func XcbActionComplete() {
|
|
if xcbActionComplete {
|
|
Fatal("xcb inserted twice")
|
|
}
|
|
xcbActionComplete = true
|
|
}
|