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

« back to all changes in this revision

Viewing changes to numa.h

  • 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:
53
53
struct bitmask *numa_bitmask_setbit(struct bitmask *, unsigned int);
54
54
struct bitmask *numa_bitmask_clearbit(struct bitmask *, unsigned int);
55
55
unsigned int numa_bitmask_nbytes(struct bitmask *);
 
56
unsigned int numa_bitmask_weight(const struct bitmask *);
56
57
struct bitmask *numa_bitmask_alloc(unsigned int);
57
58
void numa_bitmask_free(struct bitmask *);
58
59
int numa_bitmask_equal(const struct bitmask *, const struct bitmask *);
237
238
 
238
239
/* Run current task only on nodes in mask */
239
240
int numa_run_on_node_mask(struct bitmask *mask);
 
241
/* Run current task on nodes in mask without any cpuset awareness */
 
242
int numa_run_on_node_mask_all(struct bitmask *mask);
240
243
/* Run current task only on node */
241
244
int numa_run_on_node(int node);
242
245
/* Return current mask of nodes the task can run on */