~ubuntu-branches/ubuntu/utopic/numactl/utopic-proposed

« back to all changes in this revision

Viewing changes to numa.3

  • Committer: Package Import Robot
  • Author(s): Ian Wienand
  • Date: 2013-09-19 13:45:43 UTC
  • mfrom: (1.3.10)
  • Revision ID: package-import@ubuntu.com-20130919134543-02ph5k34z5jat7w6
Tags: 2.0.9~rc5-1
* Upgrade to 2.0.9~rc5
* Include multi-arch patch, thanks Eleanor Chen <chenyueg@gmail.com>!
  (Closes: #719953)
* Various updates to multi-arch to make it compliant
* Remove debian/*.dirs as upstream makes directories
* Update to compat 9 so dh_strip generates debug pkg with build-id

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
.br
100
100
.BI "int numa_run_on_node_mask(struct bitmask *" nodemask );
101
101
.br
 
102
.BI "int numa_run_on_node_mask_all(struct bitmask *" nodemask );
 
103
.br
102
104
.B struct bitmask *numa_get_run_node_mask(void);
103
105
.sp
104
106
.BI "void numa_tonode_memory(void *" start ", size_t " size ", int " node );
233
235
.IR numa_node_of_cpu (),
234
236
.IR numa_bind (),
235
237
.IR numa_run_on_node (),
236
 
.IR numa_run_on_node_mask ()
 
238
.IR numa_run_on_node_mask (),
 
239
.IR numa_run_on_node_mask_all (),
237
240
and
238
241
.IR numa_get_run_node_mask ().
239
242
These functions deal with the CPUs associated with numa nodes.
686
689
.I errno
687
690
is set to indicate the error.
688
691
 
 
692
.BR numa_run_on_node_mask_all ()
 
693
runs the current task and its children only on nodes specified in
 
694
.IR nodemask
 
695
like
 
696
.I numa_run_on_node_mask
 
697
but without any cpuset awareness.
 
698
 
689
699
.BR numa_get_run_node_mask ()
690
700
returns a mask of CPUs on which the current task is allowed to run.
691
701