Page 15 of 55

Re: When your OS goes crazy - Screenshots

Posted: Thu Sep 13, 2012 1:38 pm
by Antti
My new console scrolling did not work.

Re: When your OS goes crazy - Screenshots

Posted: Thu Sep 13, 2012 2:20 pm
by Satoshi
err.png
err2.png

Re: When your OS goes crazy - Screenshots

Posted: Thu Sep 13, 2012 6:51 pm
by klange
@Bloodman: That first screenshot looks like your shell is falling!


This odd little graphical glitch shows up in my login process most of the time:

Image

Essentially, the login manager runs under the window compositor in a single full-screen window. It closes that window during the login process and, until the "wallpaper" app starts, the compositor has nothing to draw.

Re: When your OS goes crazy - Screenshots

Posted: Fri Sep 14, 2012 5:08 am
by phillid
Another buggy piece of text screen scrolling code...
On my test machine (not in Bochs), this looks way cooler (couldn't get a photo sorry). At first I was just bamboozled. How could something so accidental look so cool? :wink:


:D Phillid

Re: When your OS goes crazy - Screenshots

Posted: Tue Sep 18, 2012 4:16 am
by Griwes
Somehow broken backbuffer-powered scrolling on real hardware - on emulators fails in less pretty way :D

Image

Re: When your OS goes crazy - Screenshots

Posted: Mon Nov 05, 2012 9:34 am
by CWood
Nothing really to look at, but the concept is a good laugh.

I've been chasing a bug or 15 lately, wherein I've not been able to push to the stack, nothing is writing to memory, and none of my comparisons working. When I pop back from the stack, I get meaningless rubbish. Or so I thought. Just now, a mistyped command into the QEMU monitor revealed this gem:

"06/23/99\0\xfcH"

Wait a minute. "06/23/99", that looks like a date. Frantic searching through the source code...

The realization hit me like a train. I've set my stack up in the EBDA! :oops: :shock: Maybe now, my kernel will actually be called from the new bootloader. -.-

Re: When your OS goes crazy - Screenshots

Posted: Mon Nov 12, 2012 12:59 pm
by ben1066
In my page fault handler I called my panic function. In my panic function I forgot to actually pass the file, line and description to kprintf but had the format string using them still. On QEMU this looked really boring.

Image

Re: When your OS goes crazy - Screenshots

Posted: Wed Nov 14, 2012 4:24 am
by danielbj
Just startet rewriting my OS (Unicorn OS)...
Going to protected mode = More stuff can go horribly wrong.

Can't wait to debug all the graphical errors :lol:

Re: When your OS goes crazy - Screenshots

Posted: Wed Nov 14, 2012 6:15 pm
by klange
I was digging through my image archives and remembered that I had these from a while back when I was working on window resizing:

Image

Image

Windows are stored in shared memory regions, and resizing them to be larger (usually) requires that a new buffer be allocated. Shared memory handling wasn't thread-safe. If the main thread managed resizing (ie., through command callbacks from the client applications - a window asking the compositor "resize me"), resizing would work fine: new memory regions would be allocated by the same thread that did all the rest of the shared memory handling. When resizing was made into a window manager action it moved into a different thread. Shared memory regions would be allocated on top of existing memory regions due to the threading bug. Particularly, the memory used by the wallpaper application would be overwitten (in the compositor) by references to the memory for the newly resized window. So if you, say, made nyancat really big, it would overwrite the background and you'd get this (dynamic) effect. It would also overwrite important structures used for handshaking, ultimately breaking the compositor's ability to spawn new windows.

One-line fix in the kernel, and everything worked smoothly.

Re: When your OS goes crazy - Screenshots

Posted: Sat Nov 17, 2012 8:25 am
by ben1066
Image
Was trying to use BGA, needless to say I gave up. I am now using GRUB 2 and VBE, seems to work alright, don't have to worry about PCI to get the address either.

EDIT: Think that issue was caused by assuming the wrong bitdepth, but that doesn't matter now since I no longer use BGA.

Re: When your OS goes crazy - Screenshots

Posted: Sun Nov 18, 2012 7:19 pm
by captmicro
That feel when you try to add support for backspace in your console and it fails.
It's amazing what a single line of code can do.

Code: Select all

if (inputbuf[inputidx] == '\b') { lastBuf = kbBuf; inputidx--; continue; }
Image

Re: When your OS goes crazy - Screenshots

Posted: Wed Nov 28, 2012 9:54 pm
by thepowersgang
A slightly buggy blit function assuming that if it's blitting a full destination scanline, it's blitting a full source scanline. Breaks when there's a window that's wider than the screen is.

Re: When your OS goes crazy - Screenshots

Posted: Mon Dec 03, 2012 2:19 am
by Primis
This is my panic screen when called from a page fault:
void panicScreen(char *name, unsigned location, char *noteA, char *noteB, char *noteC);

Image

Re: When your OS goes crazy - Screenshots

Posted: Sun Dec 09, 2012 10:16 pm
by klange
While working on scrollback support in my terminal, I flipped a subtraction, resulting in this modern take on the classic garbage-text-framebuffer:

Image

The beauty of chaos, now with Unicode support.

Re: When your OS goes crazy - Screenshots

Posted: Sun Dec 09, 2012 11:49 pm
by Antti
Primis wrote:[...]
I like that! Just remove the cursor.