Operating Systems8k+ stars

FreeBSD

The FreeBSD operating system - rock-solid Unix

Commit Details

Message
"Initial import from 4.4BSD-Lite"
Author
Rodney W. Grimes
Date
1993-06-12
Hash
6a93a8e7a9c8b03c9c3c7f5d5a6c4e6e5d4c3b2a

Fun Fact

FreeBSD powers Netflix's entire content delivery network, serving over 200 Gbps of traffic per server.

</>First Code

C
/*-
 * Copyright (c) 1982, 1986, 1991, 1993
 *	The Regents of the University of California.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>

int
main(framep)
	void *framep;
{
	/* Initialize the kernel */
	cpu_startup();
	return 0;
}