@@ -35,7 +35,6 @@ pub enum ErrorCode {
3535 GispatchFunctionPointerNotSet = 6 ,
3636 OutbError = 7 ,
3737 UnknownError = 8 ,
38- StackOverflow = 9 ,
3938 GsCheckFailed = 10 ,
4039 TooManyGuestFunctions = 11 ,
4140 FailureInDlmalloc = 12 ,
@@ -59,7 +58,6 @@ impl From<ErrorCode> for FbErrorCode {
5958 ErrorCode :: GispatchFunctionPointerNotSet => Self :: GispatchFunctionPointerNotSet ,
6059 ErrorCode :: OutbError => Self :: OutbError ,
6160 ErrorCode :: UnknownError => Self :: UnknownError ,
62- ErrorCode :: StackOverflow => Self :: StackOverflow ,
6361 ErrorCode :: GsCheckFailed => Self :: GsCheckFailed ,
6462 ErrorCode :: TooManyGuestFunctions => Self :: TooManyGuestFunctions ,
6563 ErrorCode :: FailureInDlmalloc => Self :: FailureInDlmalloc ,
@@ -86,7 +84,6 @@ impl From<FbErrorCode> for ErrorCode {
8684 }
8785 FbErrorCode :: GispatchFunctionPointerNotSet => Self :: GispatchFunctionPointerNotSet ,
8886 FbErrorCode :: OutbError => Self :: OutbError ,
89- FbErrorCode :: StackOverflow => Self :: StackOverflow ,
9087 FbErrorCode :: GsCheckFailed => Self :: GsCheckFailed ,
9188 FbErrorCode :: TooManyGuestFunctions => Self :: TooManyGuestFunctions ,
9289 FbErrorCode :: FailureInDlmalloc => Self :: FailureInDlmalloc ,
@@ -113,7 +110,6 @@ impl From<u64> for ErrorCode {
113110 6 => Self :: GispatchFunctionPointerNotSet ,
114111 7 => Self :: OutbError ,
115112 8 => Self :: UnknownError ,
116- 9 => Self :: StackOverflow ,
117113 10 => Self :: GsCheckFailed ,
118114 11 => Self :: TooManyGuestFunctions ,
119115 12 => Self :: FailureInDlmalloc ,
@@ -138,7 +134,6 @@ impl From<ErrorCode> for u64 {
138134 ErrorCode :: GispatchFunctionPointerNotSet => 6 ,
139135 ErrorCode :: OutbError => 7 ,
140136 ErrorCode :: UnknownError => 8 ,
141- ErrorCode :: StackOverflow => 9 ,
142137 ErrorCode :: GsCheckFailed => 10 ,
143138 ErrorCode :: TooManyGuestFunctions => 11 ,
144139 ErrorCode :: FailureInDlmalloc => 12 ,
@@ -164,7 +159,6 @@ impl From<ErrorCode> for String {
164159 ErrorCode :: GispatchFunctionPointerNotSet => "GispatchFunctionPointerNotSet" . to_string ( ) ,
165160 ErrorCode :: OutbError => "OutbError" . to_string ( ) ,
166161 ErrorCode :: UnknownError => "UnknownError" . to_string ( ) ,
167- ErrorCode :: StackOverflow => "StackOverflow" . to_string ( ) ,
168162 ErrorCode :: GsCheckFailed => "GsCheckFailed" . to_string ( ) ,
169163 ErrorCode :: TooManyGuestFunctions => "TooManyGuestFunctions" . to_string ( ) ,
170164 ErrorCode :: FailureInDlmalloc => "FailureInDlmalloc" . to_string ( ) ,
0 commit comments