Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

To the faggot spamming HMA

Name: Anonymous 2009-04-22 13:43

Please stop!
You're making /prog/ cry! :S

Name: Anonymous 2009-04-22 13:45

hax my anus? What's wrong with hax my anus?

Name: Anonymous 2009-04-22 13:47

What does a Negro's wife say to her husband in bed?

BLAX MY ANUS

Name: Anonymous 2009-04-22 13:47

:S
No, you are.

Name: Anonymous 2009-04-22 13:48

>>2
It was enjoyable until you started spamming it all over here.

Name: Anonymous 2009-04-22 13:48

>>4
Mr Though Guy huh? ;-}

Name: sage 2009-04-22 13:49

HMA is the worst /prog/ meme ever.

Name: HMA MEME INVENTOR 2009-04-22 13:49

>>5
Newfag. GTFO!

Name: HMA MEME INVENTOR 2009-04-22 13:49

>>7
FAG! GTFO!

Name: HMA MEME INVENTOR FAN 2009-04-22 14:00

>>8,9
I LOVE YOU! I LOVE YOUR MEME! I USE IT ALL THE TIME!KEEP HAXXING!

Name: Anonymous 2009-04-22 14:03


Poster poster = new Poster(10);
Anus anus = anusFactory.getAnus(poster);
anus.hax();

Name: Anonymous 2009-04-22 15:14

HMA is third worst compared to that failed ey and FV meme.

Name: Anonymous 2009-04-22 16:31

>>8
Newfag
Back to /b/, please. for using that term.

Name: Anonymous 2009-04-22 16:44

Eternal September has hit /prog/. It's over, it's gone. The influx of new users here has overwhelmed the community. They have won. It's time to find a new home.

Name: HMA FAN 2009-04-22 16:46

I love the smell of haxed anii in the morning.

Name: Anonymous 2009-04-22 16:49

>>14
Agreed, we should fork(); prog

Name: Anonymous 2009-04-22 16:52

>>14,16
Don't leave me behind guys ;_;

Name: Anonymous 2009-04-22 16:55

>>17
you can join our private area of /prog/ if you pay us enough ;)

Name: HMA MEME FAN 2009-04-22 17:11

hax my anus is the best
fuck you if you don't like it

Name: HMF POSTER FAN 2009-04-22 17:12

hax is anus

Name: Anonymous 2009-04-22 17:16

Since I have been able to find an intelligent posting in this thread,
I will respond to it and explain what I can as chief architect of the
SparcLinux port.

The main points of interest are:

1) Solaris's networking stack, in all of it's incantations (one breed
   of it was the Lochman code in 2.0, 2.1 and early 2.2 releases, then
   it was rewritten by another company for 2.3 onward) is SVR4 streams
   based.

2) Linux is light weight, Solaris is a pig.

3) Every BSD and SVR4 based system today, except for Linux, has a very
   broken System call mechanism.

4) Solaris cannot even do it's own optimizations correctly because
   SunPRO is a broken compiler.

So my question always is, in matters such as these.  Who are these
processor cycles for anyways, the kernel or the user?  Think about
this when you consider how much overhead is being saved from one OS to
another, and to what scale this is occurring.

I hope that explains some of it, and gives people at least some sort
of idea of the kinds of things that makes Linux scream on just about
any hardware.  If people would like more explainations like the above,
I'd be more than happy to chat with you via email about it or
similar.  I love talking about performance issues on various
processors and systems.

Oh, and one thing that has not been mentioned yet in this thread (and
yes NetBSD/OpenBSD both have this as well, good work guys).  That
SparcLinux kernel that gets all of this incredible performance runs on
both sun4c and sun4m machines.  Sun Engineers way back when scratched
their heads for months and couldn't figure out a way to pull it off
(you need a seperate kernel image depending upon whether you are
running on a sun4m or a sun4c, for SunOS/Solaris).  And on top of that
Linux obviously pulls it off efficiently.

One final note.  When you have to deal with SunSOFT to report a bug,
how "important" do you have (ie. Fortune 500?) to be and how big of a
customer do you have to be (multi million dollar purchases?) to get
direct access to Sun's Engineers at Sun Quentin?  With Linux, all you
have to do is send me or one of the other SparcLinux hackers an email
and we will attend to your bug in due time.  We have too much pride in
our system to ignore you and not fix the bug.

Name: Anonymous 2009-04-22 17:42

>>21
Since I have been able to find an intelligent posting in this thread, I will respond to it and explain what I can as chief explainer of this board.
1) We conjure the spirits of the computer with our incantations.
2) All pigs must die.
3) System calls are for pussies.
4) Compilers are for pussies.
Processor cycles are for the processor, stupid.
Linux has no mouth and it must scream.
Linux pulls it off. Efficiently.
Let's make a Linux Pride Parade!

Name: Anonymous 2009-04-22 18:05

>>22
incantations
ಠ_ಠ

Name: Anonymous 2009-04-23 6:45

This reminds me...
Ef e weydeyfeyy meme we heve feygeyyey.

Name: Anonymous 2009-04-23 9:37

MOGGY

Name: Anonymous 2009-04-23 12:05

>>21
3) Every BSD and SVR4 based system today, except for Linux, has a very broken System call mechanism.
Which explains why FreeBSD has binary compatibility with Linux. That's right. The FreeBSD kernel supports both the BSD syscall conventions and the Linux syscall conventions. So how is BSD broken? IHBT

Name: Anonymous 2009-04-23 13:38

>>26
Hi Taro :)

Name: Anonymous 2009-04-23 14:46

>>26
dude the sussman called you a pedo are you going to take that

Name: Anonymous 2009-04-23 18:07

>>26
You'd think that when people put together function call conventions
for a particular processor, the OS people would take a look at this
and find a way to take advantage of this.  In fact, believe it or
not, they have not to this very day.

Linux from day one, takes advantage of the procedure call
conventions on a particular architecture so that it can process
system calls in the most expediant way possible.  I will give
an example on the Sparc to prove this:

 Consider your average 3 argument system call.  The user level
 code does something like this:

 mov  %arg0, %o0
 mov  %arg1, %o1
 mov  %arg2, %o3
 mov  SYSTEM_CALL_NUMBER, %g1
 t    SYSCALL_TRAP

 At this point control reaches the operating system, it must
 prepare to handle this request from the user.  On the Sparc, this
 is either a two step or a three step process depending upon
 whether you are doing it in the traditional broken UNIX way or the
 clean, fast, and superior Linux way.  First I will show the Linux
 method for doing this:

1) Step one, jump onto the kernel stack for this task
   and make sure the kernel has a register window to
   operate in safely.

   For Linux the code path for this runs at ~18 instructions
   for the common case (the kernel already has a valid
   register to use so now saving needs to be done).  It runs
   at ~42 instructions for the second most common case (the
   kernels needs to allocate a new register window and the
   user has a valid stack pointer) and ~82 instructions for
   the least common case (kernel needs a window, user has
   an invalid stack pointer, thus the kernel needs to save
   the user's window into a special per-task save area).

2) Take the system call number, check for valid value, use
   this to offset into a table of system call function ptrs.
   Move arguments into place and perform the syscall.

   Basically this is a simple operations a looks something
   like:

   sll  %g1, 2, %l4         ! produce offset
   ld   [%l7 + %g1], %l7    ! syscall ptr base was in %l7
   SAVE_ALL                 ! perform step #1 above
   mov  %i0, %o0
   mov  %i1, %o1
   mov  %i2, %o2
   mov  %i3, %o3
   mov  %i4, %o4
   jmp  %l7, %o7
   mov  %i5, %o5

   That is it, that is the entire system call under Linux.

 Under Solaris/SunOS things are wildly different.  Step one is
 basically the same, but step 2 is disgustingly inefficient for
 those systems.  Basically they do:

2) Call common system_call() C function.

3) This routine allocates a "system call argument package"
   structure on the kernel stack.  This is wasteful because
   we already have all of this information in registers or
   in guarenteed save areas.

4) Then this routine determines the function to call, and
   passed this "package" of arguments to the routine.

5) Every system call which expects arguments then must
   "unpack" this structure to get at the copy of the arguments
   again highly inefficient.

For every system call the system performs, you eat this unnecessary
overhead under SunOS/Solaris, under Linux only the bare minimum is
performed to do the system call successfully.

Name: Anonymous 2010-03-03 7:23

SUCCESSFULLY CALL MY ANUS

Name: Anonymous 2010-03-03 7:27

>>30
this is an interesting thread.
thank you for bumping.

Name: Anonymous 2010-03-03 9:07

>>31
Encouraging HMA is like buying monkeys to shit and wander in your apartment.

Name: Anonymous 2010-03-03 14:30

>>32
SHIT MY ANUS

Name: Anonymous 2010-03-03 14:36

>>32
WANDER IN MY ANUS

>>33
KEEP ON HAXING, MY FRIEND

Name: Anonymous 2010-03-03 14:51

HMA needs its own board, so the rest of us could actually use /prog/ without seeing this crap. I'd like to suggest /b/ as a suitable board for HMA.

Name: Anonymous 2010-03-03 14:55

You know guys... it's not that hard to ignore it. It's just a fact of life that certain posts in /prog/ will leave a wake.

Name: Anonymous 2010-03-03 15:13

IGNORE MY ANUS

Name: Anonymous 2010-03-03 15:27

>>37
Damn, I was totally bracing for "wake my anus" and you went and picked the boring option.

Name: Anonymous 2010-03-03 16:19

BRACE MY ANUS

Name: Anonymous 2010-03-03 16:46

ANAL MASTURBATION

Name: Anonymous 2010-03-03 16:56

BORE MY ANUS

Name: Anonymous 2010-03-03 17:01

Bore a large hole in my anus.

Name: Anonymous 2010-03-03 17:58

>>42
BORE A LARGE HOLE IN MY ANUS LIKE YOU MEAN IT

Name: Anonymous 2010-12-10 14:03

Name: Anonymous 2013-01-19 0:09

/prog/ will be spammed continuously until further notice. we apologize for any inconvenience this may cause.

Don't change these.
Name: Email:
Entire Thread Thread List