SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
61
infrastructure/lib/DPB/AffinityStub.pm
Normal file
61
infrastructure/lib/DPB/AffinityStub.pm
Normal file
|
@ -0,0 +1,61 @@
|
|||
# ex:ts=8 sw=4:
|
||||
# $OpenBSD: AffinityStub.pm,v 1.2 2023/05/06 05:20:31 espie Exp $
|
||||
#
|
||||
# Copyright (c) 2012-2013 Marc Espie <espie@openbsd.org>
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
# copyright notice and this permission notice appear in all copies.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
use v5.36;
|
||||
|
||||
# single-host version of affinity, doesn't do much
|
||||
|
||||
package DPB::AffinityStub;
|
||||
|
||||
use File::Path;
|
||||
use DPB::PkgPath;
|
||||
|
||||
sub new($class, $, $)
|
||||
{
|
||||
bless {}, $class;
|
||||
}
|
||||
|
||||
sub start($, $, $)
|
||||
{
|
||||
}
|
||||
|
||||
sub unmark($, $)
|
||||
{
|
||||
}
|
||||
|
||||
sub finished($, $)
|
||||
{
|
||||
}
|
||||
|
||||
sub retrieve_existing_markers($, $)
|
||||
{
|
||||
}
|
||||
|
||||
sub simplifies_to($, $, $)
|
||||
{
|
||||
}
|
||||
|
||||
sub sorted($self, $queue, $core)
|
||||
{
|
||||
return $queue->sorted($core);
|
||||
}
|
||||
|
||||
sub has_in_queue($, $)
|
||||
{
|
||||
}
|
||||
|
||||
1;
|
Loading…
Add table
Add a link
Reference in a new issue