Displaying 3 results from an estimated 3 matches for "offer_page".
Did you mean:
  offer_pages
  
2006 Jul 22
3
How do you find out what action rendered a page
...es updating parts of 
it including a table of results. i''m trying to put pagination on the 
table. thing is lots of different actions update the table and they have 
their own paginators.
anyway i have this code at the bottom which worked for another page
 <%=
		pagination_links_each(@offer_pages,:window_size =>4) do |n|
    "<a href=\"#\" onclick=\"new 
Ajax.Request(''/user/choose_offer?page=#{n}'', {asynchronous:true, 
evalScripts:true}); return false;\">#{n}</a>"
		end
		%>
but i need to right it so that the calling acti...
2008 Apr 04
8
Grant tables
Hi,
  I need to use the grant table mechanism, but I can''t find any example 
regarding how to do it. Could you please provide some examples?
Thanks
  Carlo
-- 
È molto più bello sapere qualcosa di tutto, che sapere tutto di una cosa.
Blaise Pascal
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2008 Jul 11
1
Question about Using Grant Table
Hi:
    There is a code sample in <The Definite Guide to the Xen Hypervisor>, chapter 4, "Using Grant Tables".
    The code sample is as following:
  #include <public/xen.h>
  extern void * shared_page;
  extern grant_entry_t  * grant_table;
  
  void offer_page()
   {
        uint16_t flags;
       /* create the grant table*/
      gnttab_setup_table_t setup_op;
     
     setup_op.dom =DOMID_SELF;
     setup_op.nr_frames = 1;
     setup_op.frame_list = grant_table;
    
     HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup_op, 1);
    /*offer...