Windows error 0x00000045, 69

Detailed Error Information

TOO_MANY_SESS[1]

MessageThe network BIOS session limit was exceeded.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070045.

INSUFFICIENT_SYSTEM_MAP_REGS[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x45: INSUFFICIENT_SYSTEM_MAP_REGS.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code69 (0x0045)

Questions

4votes
1answer

Getting SDL_ttf to play nice with SDL2

I've recently started migrating from using SDL (1.2.15) to SDL2 (2.0.0), and had previously depended on using the extension library SDL_ttf (2.0.11) to render fonts. When I try to use the same text library I used with version one SDL with SDL2 (admittedly not yet officially released), it compiles just [...] read more
c++
sdl
sdl-ttf
3votes
1answer

BinaryFormatter , exact TYPE-SIZE buffer

I have this serializable class : [Serializable] public class myClass { public byte myByte { get; set; } public short myShort { get; set; } public int myInt { get; set; } } knowing that the type BYTE is 1 byte and the type SHORT is 2 bytes and the [...] read more
c#
serialization
binaryformatter
2votes
1answer

iOS Crash report help needed

I have an app that is not yet in App store. I have it installed on two of my local devices. While using it on one of my devices a crash occurred. I opened the crashlog using Devices --> Device where crash happened --> DeviceLogs and found the log with [...] read more
ios
objective-c
crash-reports
symbolicatecrash
symbolicate
0votes
0answers

What is a better way to turn a user-inputted hexadecimal string into a binary in MIPS?

I'm taking a computer architecture class, and they're having us use MIPS assembly. Our current assignment is asking us to take a user-inputted hex string, and turn it into a binary one. The code I've written "works", but it's horrible, to say the least. What would be a better approach [...] read more
assembly
mips
mars-simulator
0votes
0answers

Striped down kernel take long time to load on Raspberry Pi 4

I'm just trying to customize the kernel configuration for Raspberry Pi 4B, to achieve a compact system image and quick startup, but as we can see in the logs there's approximate ~4.0s to start executing my 4.2MB kernel. * Logs: 23:20:06.198 -> 23:20:06.198 -> PM_RSTS: 0x00001000 23:20:06.198 -> RPi: BOOTLOADER [...] read more
linux-kernel
buildroot
raspberry-pi4
0votes
1answer

Strange stack trace in Windows Phone 8

Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more
windows-phone-8
crash-dumps
-5votes
1answer

Can we type strings with use of hex codes in c# like we type integers like that int a = 0x0000cd54;?

I think this is kind of unusual thing to ask, but I need this. Well, I know I can do this: string str = "45 AC 1B 5C"; And then convert it into something meaningful, but what if I don't want to bother with conversion and want to set string [...] read more
c#
.net
string
hex

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0