Mortal Kombat


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Mortal Kombat
# 1  
Old 04-07-2011
Computer Mortal Kombat

Anyone hyped up for upcoming Mortal Kombat this April 21? what do you think of its back to basic 2d format? graphics? added games to Mortal Kombat?
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. War Stories

Confessions of a Mortal Diver - Learning the Hard Way by Richard Pyle

We archive this amazing and true story by Richard Pyle illustrating how not to scuba dive. A portion of this article was published in AquaCorps: BENT 3(2):51, 54 (0 Replies)
Discussion started by: Neo
0 Replies

2. Solaris

x4200 mortal errors and hellllp me!

hi after installation of sol 10 u 2 system started rebooting and when i tried to install solaris the system is giving: panic/thread=cbacf800: BAD TRAP: type=e(#pf page fault) rp=fec38ae4 addr=458b247d occured in module "unix" due to an illegal access to a user address syncing file systems..... (2 Replies)
Discussion started by: nibiru78
2 Replies
Login or Register to Ask a Question
XDF_DEFINE_ARRAYS(3)					     xdffileio library manual					      XDF_DEFINE_ARRAYS(3)

NAME
xdf_define_arrays - Specify the number of input/output arrays SYNOPSIS
#include <xdfio.h> int xdf_define_arrays(struct xdf* xdf, unsigned int narrays, const size_t *strides); DESCRIPTION
xdf_define_arrays() specifies the number of arrays and its strides for upcoming calls to xdf_write(3) and xdf_read(3) using xdf. This function is used to configure the upcoming transfer. As such, it must be called before xdf_prepare_transfer(3) (calling it after will pro- duce an error). However the function may be called several times but only the last call is meaningful for the transfer. narrays specifies the number of arrays that will be provided in the argument list of xdf_write(3) or xdf_read(3). strides argument should point to an array of narrays unsigned int corresponding respectively to the stride of each arrays that will be sup- plied to the upcoming call to xdf_write(3) or xdf_read(3). The stride corresponds to the length in byte between two consecutive samples of the same channel in the array. RETURN VALUE
xdf_define_arrays() returns 0 in case of success, otherwise -1 and errno is set appropriately. ERRORS
ENOMEM The system is unable to allocate resources. SEE ALSO
xdf_prepare_transfer(3), xdf_read(3), xdf_write(3) EPFL
2010 XDF_DEFINE_ARRAYS(3)