Displaying 6 results from an estimated 6 matches for "zero0".
Did you mean:
  zero
  
2009 Jun 06
2
How does controller call render when there's no render in action
Hello,
I was studying Rails source and at this point:
def process(request, response, method = :perform_action, *arguments)
#:nodoc:
        response.request = request
        initialize_template_class(response)
        assign_shortcuts(request, response)
        initialize_current_url
        assign_names
        log_processing
        send(method, *arguments)
        send_response
I have a
2011 Mar 24
1
.Fortran successful, R locks up.
...oini.f
gfortran -fPIC -g -O2   -c closefiles.f
gfortran -shared  -o swat.so modparm.o addh.o albedo.o
allocate_parms.o alph.o analyse.o anfert.o apex_day.o apply.o ascrv.o
---SNIP successful link output----
writeaa.o writed.o writem.o writeswatfile.o writeswatmain.o xisquare.o
xiunc.o xmon.o ysed.o zero0.o zero1.o zero2.o zeroini.o closefiles.o
installing to /glade/home/fuka/R/x86_64-unknown-linux-gnu-library/2.12/EcoHydrology/libs
** R
** data
** preparing package for lazy loading
** help
*** installing help indices
** building package indices ...
** testing if installed package can be loaded
* D...
2007 Dec 06
51
[PATCH 0/19] desc_struct integration
Hi,
this is a series of patches that unify the struct desc_struct and friends
across x86_64 and i386. As usual, it provides paravirt capabilities as a
side-effect for x86_64.
I consider the main goal, namely, of unifying the desc_struct, an ongoing
effort, being this the beginning. A lot of old code has to be touched to
accomplish that. 
I don't consider this patch ready for inclusion.
2007 Dec 06
51
[PATCH 0/19] desc_struct integration
Hi,
this is a series of patches that unify the struct desc_struct and friends
across x86_64 and i386. As usual, it provides paravirt capabilities as a
side-effect for x86_64.
I consider the main goal, namely, of unifying the desc_struct, an ongoing
effort, being this the beginning. A lot of old code has to be touched to
accomplish that. 
I don't consider this patch ready for inclusion.
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...static inline void _lguest_set_gate(struct gate_struct *s, unsigned type, unsigned long func,
+				    unsigned dpl, unsigned ist)
+{
+        s->offset_low = PTR_LOW(func);
+        s->segment = __HV_CS;
+        s->ist = ist;
+        s->p = 1;
+        s->dpl = dpl;
+        s->zero0 = 0;
+        s->zero1 = 0;
+        s->type = type;
+        s->offset_middle = PTR_MIDDLE(func);
+        s->offset_high = PTR_HIGH(func);
+}
+
+static inline unsigned long guest_pa(struct lguest_guest_info *linfo, u64 addr)
+{
+	return (addr >= linfo->start_kernel_map) ?
+		(ad...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...static inline void _lguest_set_gate(struct gate_struct *s, unsigned type, unsigned long func,
+				    unsigned dpl, unsigned ist)
+{
+        s->offset_low = PTR_LOW(func);
+        s->segment = __HV_CS;
+        s->ist = ist;
+        s->p = 1;
+        s->dpl = dpl;
+        s->zero0 = 0;
+        s->zero1 = 0;
+        s->type = type;
+        s->offset_middle = PTR_MIDDLE(func);
+        s->offset_high = PTR_HIGH(func);
+}
+
+static inline unsigned long guest_pa(struct lguest_guest_info *linfo, u64 addr)
+{
+	return (addr >= linfo->start_kernel_map) ?
+		(ad...